summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/usb-imx233.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/usb-imx233.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/usb-imx233.c')
-rw-r--r--firmware/target/arm/imx233/usb-imx233.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/imx233/usb-imx233.c b/firmware/target/arm/imx233/usb-imx233.c
index 904f84b948..304018b09b 100644
--- a/firmware/target/arm/imx233/usb-imx233.c
+++ b/firmware/target/arm/imx233/usb-imx233.c
@@ -69,7 +69,7 @@ void usb_enable(bool on)
69{ 69{
70 if(on) 70 if(on)
71 { 71 {
72 imx233_enable_usb_pll(true); 72 imx233_clkctrl_enable_usb_pll(true);
73 imx233_enable_usb_phy(true); 73 imx233_enable_usb_phy(true);
74 imx233_enable_usb_controller(true); 74 imx233_enable_usb_controller(true);
75 usb_core_init(); 75 usb_core_init();
@@ -79,6 +79,6 @@ void usb_enable(bool on)
79 usb_core_exit(); 79 usb_core_exit();
80 imx233_enable_usb_controller(false); 80 imx233_enable_usb_controller(false);
81 imx233_enable_usb_phy(false); 81 imx233_enable_usb_phy(false);
82 imx233_enable_usb_pll(false); 82 imx233_clkctrl_enable_usb_pll(false);
83 } 83 }
84} 84}