diff options
-rw-r--r-- | drivers/usb/host/fotg210-hcd.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/usb/host/fotg210-hcd.c b/drivers/usb/host/fotg210-hcd.c index 35020129e2c8..787f4e3d16d8 100644 --- a/drivers/usb/host/fotg210-hcd.c +++ b/drivers/usb/host/fotg210-hcd.c | |||
@@ -1401,15 +1401,13 @@ static int check_reset_complete(struct fotg210_hcd *fotg210, int index, | |||
1401 | return port_status; | 1401 | return port_status; |
1402 | 1402 | ||
1403 | /* if reset finished and it's still not enabled -- handoff */ | 1403 | /* if reset finished and it's still not enabled -- handoff */ |
1404 | if (!(port_status & PORT_PE)) { | 1404 | if (!(port_status & PORT_PE)) |
1405 | /* with integrated TT, there's nobody to hand it to! */ | 1405 | /* with integrated TT, there's nobody to hand it to! */ |
1406 | fotg210_dbg(fotg210, | 1406 | fotg210_dbg(fotg210, "Failed to enable port %d on root hub TT\n", |
1407 | "Failed to enable port %d on root hub TT\n", | 1407 | index + 1); |
1408 | else | ||
1409 | fotg210_dbg(fotg210, "port %d reset complete, port enabled\n", | ||
1408 | index + 1); | 1410 | index + 1); |
1409 | return port_status; | ||
1410 | } | ||
1411 | fotg210_dbg(fotg210, "port %d reset complete, port enabled\n", | ||
1412 | index + 1); | ||
1413 | 1411 | ||
1414 | return port_status; | 1412 | return port_status; |
1415 | } | 1413 | } |