summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2015-02-02 17:07:20 +0800
committerFrank Li <Frank.Li@freescale.com>2015-02-04 21:53:33 +0800
commit615af07d960d9ec17708fb1712b2362dbaeab121 (patch)
treeaea927c3cce3abefef5055b0b8e5676079f5452c /arch
parentac0d51ef07fdec880e6da318c08d521506640efa (diff)
downloadu-boot-imx-615af07d960d9ec17708fb1712b2362dbaeab121.zip
u-boot-imx-615af07d960d9ec17708fb1712b2362dbaeab121.tar.gz
u-boot-imx-615af07d960d9ec17708fb1712b2362dbaeab121.tar.bz2
MLK-10195 imx: mx7: Fix build warning related to mxs_lcd_init
Fix the warning below by adding function declare: drivers/video/mxsfb.c: In function 'mxs_lcd_init': drivers/video/mxsfb.c:92:2: warning: implicit declaration of function 'mxs_set_lcdclk' [-Wimplicit-function-declaration] mxs_set_lcdclk(panel->isaBase, PS2KHZ(mode->pixclock)); Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/include/asm/arch-mx7/clock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-mx7/clock.h b/arch/arm/include/asm/arch-mx7/clock.h
index 292baf4..cd128ce 100644
--- a/arch/arm/include/asm/arch-mx7/clock.h
+++ b/arch/arm/include/asm/arch-mx7/clock.h
@@ -344,5 +344,5 @@ void enable_usboh3_clk(unsigned char enable);
void hab_caam_clock_enable(void);
void hab_caam_clock_disable(void);
#endif
-
+void mxs_set_lcdclk(uint32_t base_addr, uint32_t freq);
#endif