diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-16 20:08:49 +0200 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-17 00:29:24 +0200 |
commit | f5ac658d160d11880c2affa9c5b669404c4fe207 (patch) | |
tree | 120f5e132430ea032d12d765fc6f407c020a908e /firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c | |
parent | 84fc327aeb7be91e611520bb058a6c8d318401c3 (diff) | |
download | rockbox-f5ac658d160d11880c2affa9c5b669404c4fe207.tar.gz rockbox-f5ac658d160d11880c2affa9c5b669404c4fe207.zip |
imx233: normalise clkctrl
The clkctrl functions were becoming a mess. Normalise the names,
get rid of the xtal derived as special case and use the same
interface.
Change-Id: Ib954a8d30a6bd691914b5e0d97774ec9fc560c50
Diffstat (limited to 'firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c')
-rw-r--r-- | firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c b/firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c index 0a16c995c1..1e60e60463 100644 --- a/firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c +++ b/firmware/target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c | |||
@@ -110,10 +110,10 @@ static inline uint32_t decode_18_to_16(uint32_t a) | |||
110 | static void setup_lcdif_clock(void) | 110 | static void setup_lcdif_clock(void) |
111 | { | 111 | { |
112 | /* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */ | 112 | /* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */ |
113 | imx233_clkctrl_enable_clock(CLK_PIX, false); | 113 | imx233_clkctrl_enable(CLK_PIX, false); |
114 | imx233_clkctrl_set_clock_divisor(CLK_PIX, 1); | 114 | imx233_clkctrl_set_div(CLK_PIX, 1); |
115 | imx233_clkctrl_set_bypass_pll(CLK_PIX, true); /* use XTAL */ | 115 | imx233_clkctrl_set_bypass(CLK_PIX, true); /* use XTAL */ |
116 | imx233_clkctrl_enable_clock(CLK_PIX, true); | 116 | imx233_clkctrl_enable(CLK_PIX, true); |
117 | } | 117 | } |
118 | 118 | ||
119 | static void lcd_write_reg(uint32_t reg, uint32_t data) | 119 | static void lcd_write_reg(uint32_t reg, uint32_t data) |