summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2012-05-19 13:16:17 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2012-05-19 16:10:51 +0200
commit553aeae9c63f789c969a954983e537244934903a (patch)
tree13a36bf8dc86d77b4ff5d7f6127b1df1c5c3e633 /firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
parent9022c69b646b43d7bd5ee2948f6abb9f51459aea (diff)
downloadrockbox-553aeae9c63f789c969a954983e537244934903a.tar.gz
rockbox-553aeae9c63f789c969a954983e537244934903a.zip
imx233: fix clkctrl naming
Move to a more consistent naming convention like the other devices Change-Id: I4ddbbee27ee9f5ae775c5776592ec7ce02b30948
Diffstat (limited to 'firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c')
-rw-r--r--firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c8
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 3913bf6906..39469028a0 100644
--- a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
+++ b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
@@ -157,10 +157,10 @@ static inline uint32_t decode_18_to_16(uint32_t a)
157static void setup_lcdif_clock(void) 157static void setup_lcdif_clock(void)
158{ 158{
159 /* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */ 159 /* the LCD seems to work at 24Mhz, so use the xtal clock with no divider */
160 imx233_enable_clock(CLK_PIX, false); 160 imx233_clkctrl_enable_clock(CLK_PIX, false);
161 imx233_set_clock_divisor(CLK_PIX, 1); 161 imx233_clkctrl_set_clock_divisor(CLK_PIX, 1);
162 imx233_set_bypass_pll(CLK_PIX, true); /* use XTAL */ 162 imx233_clkctrl_set_bypass_pll(CLK_PIX, true); /* use XTAL */
163 imx233_enable_clock(CLK_PIX, true); 163 imx233_clkctrl_enable_clock(CLK_PIX, true);
164} 164}
165 165
166static uint32_t i80_read_register(uint32_t data_out) 166static uint32_t i80_read_register(uint32_t data_out)