diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2015-11-29 18:30:34 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-12-07 14:59:25 +0100 |
commit | 0ff47e590bb50978f3cb397e6b04f82702bfe954 (patch) | |
tree | d4b865f335f0c039c4a0e96669ee789739333cd6 /arch | |
parent | 9f74ebe1e4138dde40bc6dcbc858276ec7f0c7b2 (diff) | |
download | u-boot-imx-0ff47e590bb50978f3cb397e6b04f82702bfe954.zip u-boot-imx-0ff47e590bb50978f3cb397e6b04f82702bfe954.tar.gz u-boot-imx-0ff47e590bb50978f3cb397e6b04f82702bfe954.tar.bz2 |
imx: mx6: add missing return value
cc: Peng Fan <Peng.Fan@freescale.com>
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Reviewed-by: Peng Fan <Peng.Fan@freescale.com>
Reviewed-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv7/mx6/clock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c index d325191..64514b1 100644 --- a/arch/arm/cpu/armv7/mx6/clock.c +++ b/arch/arm/cpu/armv7/mx6/clock.c @@ -727,6 +727,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; } #endif |