diff options
author | Peng Fan <Peng.Fan@freescale.com> | 2015-10-29 15:54:39 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-11-12 17:38:08 +0100 |
commit | 95ae700044ee54c01ae7c5e52cd4a28f1aed4533 (patch) | |
tree | 5a6773672f4ec4ead10dc8aabe15e48e3fb50661 /arch/arm/include/asm | |
parent | 233509a5b8710e53dd11757d6f4e1c8c264cad56 (diff) | |
download | u-boot-imx-95ae700044ee54c01ae7c5e52cd4a28f1aed4533.zip u-boot-imx-95ae700044ee54c01ae7c5e52cd4a28f1aed4533.tar.gz u-boot-imx-95ae700044ee54c01ae7c5e52cd4a28f1aed4533.tar.bz2 |
mxs: add parameter base_addr for mxs_set_lcdclk
Change mxs_set_lcdclk prototype to add a new parameter
base_addr. There are two LCD interfaces for i.MX6SX,
we may support LCDIF1 or LCDIF2.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Anatolij Gustschin <agust@denx.de>
Acked-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/arch-mxs/clock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-mxs/clock.h b/arch/arm/include/asm/arch-mxs/clock.h index fc9d75b..fdc5395 100644 --- a/arch/arm/include/asm/arch-mxs/clock.h +++ b/arch/arm/include/asm/arch-mxs/clock.h @@ -46,7 +46,7 @@ uint32_t mxc_get_clock(enum mxc_clock clk); void mxs_set_ioclk(enum mxs_ioclock io, uint32_t freq); void mxs_set_sspclk(enum mxs_sspclock ssp, uint32_t freq, int xtal); void mxs_set_ssp_busclock(unsigned int bus, uint32_t freq); -void mxs_set_lcdclk(uint32_t freq); +void mxs_set_lcdclk(uint32_t __maybe_unused lcd_base, uint32_t freq); /* Compatibility with the FEC Ethernet driver */ #define imx_get_fecclk() mxc_get_clock(MXC_AHB_CLK) |