summaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2015-02-02 17:07:20 +0800
committerPeng Fan <Peng.Fan@freescale.com>2015-04-29 14:56:33 +0800
commitbe63430f01bae7d27dde2cb936b569d171c5b038 (patch)
treeba766561d3b8f2e67ac41b99e036e6c1b476e598 /arch/arm
parent122e17706547c5a72b84332c8f1dc47914ff6279 (diff)
downloadu-boot-imx-be63430f01bae7d27dde2cb936b569d171c5b038.zip
u-boot-imx-be63430f01bae7d27dde2cb936b569d171c5b038.tar.gz
u-boot-imx-be63430f01bae7d27dde2cb936b569d171c5b038.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> (cherry picked from commit 615af07d960d9ec17708fb1712b2362dbaeab121) Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Diffstat (limited to 'arch/arm')
-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