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/sansa-fuzeplus/lcd-fuzeplus.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/sansa-fuzeplus/lcd-fuzeplus.c')
-rw-r--r-- | firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c index 1ca159786a..a99260f105 100644 --- a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c +++ b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c | |||
@@ -168,10 +168,10 @@ static inline uint32_t decode_18_to_16(uint32_t a) | |||
168 | static void setup_lcdif_clock(void) | 168 | static void setup_lcdif_clock(void) |
169 | { | 169 | { |
170 | /* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */ | 170 | /* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */ |
171 | imx233_clkctrl_enable_clock(CLK_PIX, false); | 171 | imx233_clkctrl_enable(CLK_PIX, false); |
172 | imx233_clkctrl_set_clock_divisor(CLK_PIX, 1); | 172 | imx233_clkctrl_set_div(CLK_PIX, 1); |
173 | imx233_clkctrl_set_bypass_pll(CLK_PIX, true); /* use XTAL */ | 173 | imx233_clkctrl_set_bypass(CLK_PIX, true); /* use XTAL */ |
174 | imx233_clkctrl_enable_clock(CLK_PIX, true); | 174 | imx233_clkctrl_enable(CLK_PIX, true); |
175 | } | 175 | } |
176 | 176 | ||
177 | static uint32_t i80_read_register(uint32_t data_out) | 177 | static uint32_t i80_read_register(uint32_t data_out) |