summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMarkus Klotzbuecher <mk@denx.de>2006-11-27 11:44:58 +0100
committerMarkus Klotzbuecher <mk@pollux.denx.de>2006-11-27 11:44:58 +0100
commit7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418 (patch)
tree360384a18d6bef3a36e5379f6282a4045b681093 /include
parent53e336e9ffc51035bdc4e5867631b3378761b4df (diff)
downloadblackbird-obmc-uboot-7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418.tar.gz
blackbird-obmc-uboot-7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418.zip
Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
to choose between the old and the generic OHCI drivers.
Diffstat (limited to 'include')
-rw-r--r--include/configs/TQM5200.h2
-rw-r--r--include/configs/delta.h2
-rw-r--r--include/configs/mp2usb.h2
-rw-r--r--include/configs/trab.h2
-rw-r--r--include/configs/yosemite.h2
-rw-r--r--include/usb.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/include/configs/TQM5200.h b/include/configs/TQM5200.h
index 832dcdde58..6c8712b68d 100644
--- a/include/configs/TQM5200.h
+++ b/include/configs/TQM5200.h
@@ -125,7 +125,7 @@
/* USB */
#ifdef CONFIG_STK52XX
-#define CONFIG_USB_OHCI
+#define CONFIG_USB_OHCI_NEW
#define ADD_USB_CMD CFG_CMD_USB | CFG_CMD_FAT
#define CONFIG_USB_STORAGE
diff --git a/include/configs/delta.h b/include/configs/delta.h
index 0617ad864e..4038f21960 100644
--- a/include/configs/delta.h
+++ b/include/configs/delta.h
@@ -103,7 +103,7 @@
#endif
/* USB */
-#define CONFIG_USB_OHCI 1
+#define CONFIG_USB_OHCI_NEW 1
#define CONFIG_USB_STORAGE 1
#define CONFIG_DOS_PARTITION 1
diff --git a/include/configs/mp2usb.h b/include/configs/mp2usb.h
index d182d49488..2cf78a3b15 100644
--- a/include/configs/mp2usb.h
+++ b/include/configs/mp2usb.h
@@ -101,7 +101,7 @@
#undef CONFIG_MODEM_SUPPORT /* disable modem initialization stuff */
-#define CONFIG_USB_OHCI 1
+#define CONFIG_USB_OHCI_NEW 1
#define CONFIG_USB_KEYBOARD 1
#define CONFIG_USB_STORAGE 1
#define CONFIG_DOS_PARTITION 1
diff --git a/include/configs/trab.h b/include/configs/trab.h
index 33617cdcd4..acf86d08ad 100644
--- a/include/configs/trab.h
+++ b/include/configs/trab.h
@@ -80,7 +80,7 @@
#define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10
/* USB stuff */
-#define CONFIG_USB_OHCI 1
+#define CONFIG_USB_OHCI_NEW 1
#define CONFIG_USB_STORAGE 1
#define CONFIG_DOS_PARTITION 1
diff --git a/include/configs/yosemite.h b/include/configs/yosemite.h
index e6a02c6316..7f434e93f8 100644
--- a/include/configs/yosemite.h
+++ b/include/configs/yosemite.h
@@ -213,7 +213,7 @@
#ifdef CONFIG_440EP
/* USB */
-#define CONFIG_USB_OHCI
+#define CONFIG_USB_OHCI_NEW
#define CONFIG_USB_STORAGE
#undef CFG_USB_OHCI_BOARD_INIT
diff --git a/include/usb.h b/include/usb.h
index bf71554041..fafac8934a 100644
--- a/include/usb.h
+++ b/include/usb.h
@@ -169,7 +169,7 @@ struct usb_device {
* this is how the lowlevel part communicate with the outer world
*/
-#if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || defined (CONFIG_USB_SL811HS)
+#if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || defined (CONFIG_USB_SL811HS) || defined(CONFIG_USB_OHCI_NEW)
int usb_lowlevel_init(void);
int usb_lowlevel_stop(void);
int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,int transfer_len);
OpenPOWER on IntegriCloud