summaryrefslogtreecommitdiff
path: root/drivers/usb/host
diff options
context:
space:
mode:
authorHeiko Schocher <hs@denx.de>2019-07-16 11:49:06 +0300
committerMarek Vasut <marex@denx.de>2019-08-08 12:35:02 +0300
commitf9c7fecbeb938d9a17e31bf7c8766190752790ae (patch)
tree52a295efa28463952c230893a5b6694aefe927ca /drivers/usb/host
parentdc4e48d845d9971d2b21f99c12f874dd06cedc0a (diff)
downloadu-boot-f9c7fecbeb938d9a17e31bf7c8766190752790ae.tar.xz
usb, ohci: add warning if none on pci found
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r--drivers/usb/host/ohci-hcd.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c
index 23ea2af5d7..58aa824ec0 100644
--- a/drivers/usb/host/ohci-hcd.c
+++ b/drivers/usb/host/ohci-hcd.c
@@ -2047,8 +2047,11 @@ int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &base);
printf("OHCI regs address 0x%08x\n", base);
gohci.regs = (struct ohci_regs *)base;
- } else
+ } else {
+ printf("%s: OHCI devnr: %d not found\n", __func__,
+ CONFIG_PCI_OHCI_DEVNO);
return -1;
+ }
#else
gohci.regs = (struct ohci_regs *)CONFIG_SYS_USB_OHCI_REGS_BASE;
#endif