diff options
Diffstat (limited to 'cpu/arm920t/usb_ohci.c')
-rw-r--r-- | cpu/arm920t/usb_ohci.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpu/arm920t/usb_ohci.c b/cpu/arm920t/usb_ohci.c index a040c13757..6f4a9f7ae9 100644 --- a/cpu/arm920t/usb_ohci.c +++ b/cpu/arm920t/usb_ohci.c @@ -34,11 +34,16 @@ */ #include <common.h> -/* #include <pci.h> no PCI on the S3C2400 */ +/* #include <pci.h> no PCI on the S3C24X0 */ #ifdef CONFIG_USB_OHCI +#if defined(CONFIG_S3C2400) #include <s3c2400.h> +#elif defined(CONFIG_S3C2410) +#include <s3c2410.h> +#endif + #include <malloc.h> #include <usb.h> #include "usb_ohci.h" |