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/arm920t/at91rm9200 | |
parent | 301f1aa384d0edcae6a22fd9adb933ad71695ecc (diff) | |
download | u-boot-imx-ddf83a2fcef1a670c45fc585119dcc1fe062c4a9.zip u-boot-imx-ddf83a2fcef1a670c45fc585119dcc1fe062c4a9.tar.gz u-boot-imx-ddf83a2fcef1a670c45fc585119dcc1fe062c4a9.tar.bz2 |
Support generic OHCI support for the s3c24x0 cpu.
Diffstat (limited to 'cpu/arm920t/at91rm9200')
-rw-r--r-- | cpu/arm920t/at91rm9200/usb.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpu/arm920t/at91rm9200/usb.c b/cpu/arm920t/at91rm9200/usb.c index 7b83f23..98e3cdd 100644 --- a/cpu/arm920t/at91rm9200/usb.c +++ b/cpu/arm920t/at91rm9200/usb.c @@ -43,5 +43,11 @@ int usb_cpu_stop() *AT91C_PMC_SCDR = AT91C_PMC_UHP; /* 48MHz clock disabled for UHP */ return 0; } + +int usb_cpu_init_fail() +{ + usb_cpu_stop(); +} + # endif /* CONFIG_AT91RM9200 */ #endif /* defined(CONFIG_USB_OHCI) && defined(CFG_USB_OHCI_CPU_INIT) */ |