diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2010-10-15 15:53:45 +0200 |
---|---|---|
committer | Remy Bohmer <linux@bohmer.net> | 2010-10-22 21:41:45 +0200 |
commit | af68c066709f20fcfd0ce6cd955bfbe4642d0a15 (patch) | |
tree | c97206ccbd84267b039987a1bf8273edea19e5ad | |
parent | fff6ec382c139eb242bd85356e66a0bc43becb63 (diff) |
ehci-pci: print hccr, hcor and hc_lenght
It is useful to know the EHCI-PCI hccr, hcor and hc_lenght to make sure it was
successfully registered, and at the correct location.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
-rw-r--r-- | drivers/usb/host/ehci-pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c index 047902a0c1c..cff34389295 100644 --- a/drivers/usb/host/ehci-pci.c +++ b/drivers/usb/host/ehci-pci.c @@ -53,6 +53,10 @@ int ehci_hcd_init(void) hcor = (struct ehci_hcor *)((uint32_t) hccr + HC_LENGTH(ehci_readl(&hccr->cr_capbase))); + debug("EHCI-PCI init hccr 0x%x and hcor 0x%x hc_length %d\n", + (uint32_t)hccr, (uint32_t)hcor, + (uint32_t)HC_LENGTH(ehci_readl(&hccr->cr_capbase))); + return 0; } |