diff options
author | Markus Klotzbuecher <mk@denx.de> | 2006-05-30 16:56:14 +0200 |
---|---|---|
committer | Markus Klotzbuecher <mk@pollux.denx.de> | 2006-05-30 16:56:14 +0200 |
commit | ddf83a2fcef1a670c45fc585119dcc1fe062c4a9 (patch) | |
tree | 2430f5505c0c76da56e937d4b52f80a97c3aac7e /cpu/pxa | |
parent | 301f1aa384d0edcae6a22fd9adb933ad71695ecc (diff) | |
download | u-boot-ddf83a2fcef1a670c45fc585119dcc1fe062c4a9.tar.gz u-boot-ddf83a2fcef1a670c45fc585119dcc1fe062c4a9.tar.bz2 u-boot-ddf83a2fcef1a670c45fc585119dcc1fe062c4a9.zip |
Support generic OHCI support for the s3c24x0 cpu.
Diffstat (limited to 'cpu/pxa')
-rw-r--r-- | cpu/pxa/usb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpu/pxa/usb.c b/cpu/pxa/usb.c index 1716157043..bff5bfb6ae 100644 --- a/cpu/pxa/usb.c +++ b/cpu/pxa/usb.c @@ -66,8 +66,13 @@ int usb_cpu_stop() { /* may not want to do this */ /* CKENA &= ~(CKENA_2_USBHOST | CKENA_20_UDC); */ + return 0; +} +int usb_cpu_init_fail() +{ return 0; } + # endif /* CONFIG_CPU_MONAHANS */ #endif /* defined(CONFIG_USB_OHCI) && defined(CFG_USB_OHCI_CPU_INIT) */ |