summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorBarry Wardell <rockbox@barrywardell.net>2007-02-16 22:13:21 +0000
committerBarry Wardell <rockbox@barrywardell.net>2007-02-16 22:13:21 +0000
commit3a6d4791d70fc9f4adad7a0cbc1b808b7c942652 (patch)
treebf28466309953e530eacbaa0f2c88e0abffa6c9b /firmware/SOURCES
parentb045a2425c4f7d2e9c9853c01897b1ba0dd6ae01 (diff)
downloadrockbox-3a6d4791d70fc9f4adad7a0cbc1b808b7c942652.tar.gz
rockbox-3a6d4791d70fc9f4adad7a0cbc1b808b7c942652.zip
No functional changes, just reorganising code:
1) Move ARC OTG USB (used in PP502x) driver code into it's own file, drivers/arcotg_udc.c. Hopefully in the future we will be able to adapt more of the Linux driver and add it to this file. 2) Rename mx31.h to arcotg_udc.h to reflect the file the code came from. It's also a more accurate name for the USB controller. 3) Get rid of one more inl()/outl() in usb-pp.c and use the relevant #define instead. 4) Add dr_controller_stop(). Not used yet. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12340 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index d4447c22cc..9842689544 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -212,6 +212,8 @@ drivers/tlv320.c
212drivers/isp1362.c 212drivers/isp1362.c
213#elif CONFIG_USBOTG == USBOTG_M5636 213#elif CONFIG_USBOTG == USBOTG_M5636
214drivers/m5636.c 214drivers/m5636.c
215#elif CONFIG_USBOTG == USBOTG_ARC
216drivers/arcotg_udc.c
215#endif /* CONFIG_USBOTG */ 217#endif /* CONFIG_USBOTG */
216#endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */ 218#endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
217 219