diff options
author | Markus Klotzbuecher <mk@denx.de> | 2006-11-27 11:44:58 +0100 |
---|---|---|
committer | Markus Klotzbuecher <mk@pollux.denx.de> | 2006-11-27 11:44:58 +0100 |
commit | 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418 (patch) | |
tree | 360384a18d6bef3a36e5379f6282a4045b681093 /drivers/usb_ohci.c | |
parent | 53e336e9ffc51035bdc4e5867631b3378761b4df (diff) |
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 'drivers/usb_ohci.c')
-rw-r--r-- | drivers/usb_ohci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb_ohci.c b/drivers/usb_ohci.c index be1a615ebeb..482633fc67e 100644 --- a/drivers/usb_ohci.c +++ b/drivers/usb_ohci.c @@ -43,7 +43,7 @@ #include <common.h> /* #include <pci.h> no PCI on the S3C24X0 */ -#ifdef CONFIG_USB_OHCI +#ifdef CONFIG_USB_OHCI_NEW /* mk: are these really required? */ #if defined(CONFIG_S3C2400) @@ -1756,4 +1756,4 @@ int usb_lowlevel_stop(void) return 0; } -#endif /* CONFIG_USB_OHCI */ +#endif /* CONFIG_USB_OHCI_NEW */ |