diff options
author | Peter Chen <peter.chen@freescale.com> | 2012-03-28 21:50:06 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-18 16:46:41 -0400 |
commit | 0ca7eb235de5a72614c4ddd37707f9d9671e5403 (patch) | |
tree | 415c4ed5a28700cc58bbb1a1bb4b598c2df8d074 /drivers/usb/host/ehci-hub.c | |
parent | fe375774bd88a358d24c3f624373117c642f6999 (diff) |
USB: EHCI: remove wrong debug message for port speed
It displays wrong debug message if we plug in a full/low
speed device at port for builtin TT controller. We can get
device/port speed information at following code of hub_port_init,
so it is better to replace it with debug message of "reset complete".
Signed-off-by: Peter Chen <peter.chen@freescale.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-hub.c')
-rw-r--r-- | drivers/usb/host/ehci-hub.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index 256fbd42e48c..8f57c6e86e87 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c | |||
@@ -536,7 +536,8 @@ static int check_reset_complete ( | |||
536 | if (ehci->has_amcc_usb23) | 536 | if (ehci->has_amcc_usb23) |
537 | set_ohci_hcfs(ehci, 1); | 537 | set_ohci_hcfs(ehci, 1); |
538 | } else { | 538 | } else { |
539 | ehci_dbg (ehci, "port %d high speed\n", index + 1); | 539 | ehci_dbg(ehci, "port %d reset complete, port enabled\n", |
540 | index + 1); | ||
540 | /* ensure 440EPx ohci controller state is suspended */ | 541 | /* ensure 440EPx ohci controller state is suspended */ |
541 | if (ehci->has_amcc_usb23) | 542 | if (ehci->has_amcc_usb23) |
542 | set_ohci_hcfs(ehci, 0); | 543 | set_ohci_hcfs(ehci, 0); |