diff options
| author | Jeroen Hofstee <[email protected]> | 2015-11-29 18:30:34 +0100 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2015-12-07 14:59:25 +0100 |
| commit | 0ff47e590bb50978f3cb397e6b04f82702bfe954 (patch) | |
| tree | d4b865f335f0c039c4a0e96669ee789739333cd6 | |
| parent | 9f74ebe1e4138dde40bc6dcbc858276ec7f0c7b2 (diff) | |
imx: mx6: add missing return value
cc: Peng Fan <[email protected]>
Signed-off-by: Jeroen Hofstee <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
Reviewed-by: Stefano Babic <[email protected]>
| -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 d325191606f..64514b16341 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 |
