diff options
| author | Markus Klotzbuecher <mk@denx.de> | 2007-06-06 10:08:12 +0200 |
|---|---|---|
| committer | Markus Klotzbuecher <mk@pollux.denx.de> | 2007-06-06 10:08:12 +0200 |
| commit | 09444143670c9c2243cb7aba9f70b3713d33bed1 (patch) | |
| tree | ab34eeb61271f6322fecb4bc9cc0c6879d53eb54 | |
| parent | 51d8e813222fa3063d423220f6ff1146df58a471 (diff) | |
| download | olio-uboot-2014.01-09444143670c9c2243cb7aba9f70b3713d33bed1.tar.xz olio-uboot-2014.01-09444143670c9c2243cb7aba9f70b3713d33bed1.zip | |
Change duplicate usb_cpu_init_fail to usb_board_init_fail
Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
this out.
Signed-off-by: Markus Klotzbuecher <mk@denx.de>
| -rw-r--r-- | drivers/usb_ohci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb_ohci.h b/drivers/usb_ohci.h index 95fbc4465..d2b03c0ee 100644 --- a/drivers/usb_ohci.h +++ b/drivers/usb_ohci.h @@ -10,7 +10,7 @@ /* functions for doing board or CPU specific setup/cleanup */ extern int usb_board_init(void); extern int usb_board_stop(void); -extern int usb_cpu_init_fail(void); +extern int usb_board_init_fail(void); extern int usb_cpu_init(void); extern int usb_cpu_stop(void); |