From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peng Fan Date: Mon, 30 Nov 2015 09:46:23 +0800 Subject: [U-Boot] [PATCH] imx: mx6: add missing return value In-Reply-To: <1448818234-9284-1-git-send-email-jeroen@myspectrum.nl> References: <1448818234-9284-1-git-send-email-jeroen@myspectrum.nl> Message-ID: <20151130014620.GA22479@shlinux2> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Jeroen, On Sun, Nov 29, 2015 at 06:30:34PM +0100, Jeroen Hofstee wrote: >cc: Peng Fan >Signed-off-by: Jeroen Hofstee >--- >not tested ;) > > arch/arm/cpu/armv7/mx6/clock.c | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c >index 67e0f32..4f6fe86 100644 >--- a/arch/arm/cpu/armv7/mx6/clock.c >+++ b/arch/arm/cpu/armv7/mx6/clock.c >@@ -715,6 +715,8 @@ int enable_lcdif_clock(u32 base_addr) > reg = readl(&imx_ccm->CCGR2); > reg |= MXC_CCM_CCGR2_LCD_MASK; > writel(reg, &imx_ccm->CCGR2); >+ >+ return 0; I CCed i.MX branch maintainer for you. Reviewed-by: Peng Fan Regards, Peng. > } > #endif > >-- >1.9.1 > --