Commit d4b7d8e8 authored by Alan Stern's avatar Alan Stern Committed by Greg Kroah-Hartman

USB: fix ratelimit call semantics

This patch (as910) fixes a ratelimit modification so that the
original error-handling path will be followed even when the log-rate
limitation kicks in.
Signed-off-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent dd865571
...@@ -2421,10 +2421,10 @@ static void hub_port_connect_change(struct usb_hub *hub, int port1, ...@@ -2421,10 +2421,10 @@ static void hub_port_connect_change(struct usb_hub *hub, int port1,
if (portchange & USB_PORT_STAT_C_CONNECTION) { if (portchange & USB_PORT_STAT_C_CONNECTION) {
status = hub_port_debounce(hub, port1); status = hub_port_debounce(hub, port1);
if (status < 0 && printk_ratelimit()) { if (status < 0) {
dev_err (hub_dev, if (printk_ratelimit())
"connect-debounce failed, port %d disabled\n", dev_err (hub_dev, "connect-debounce failed, "
port1); "port %d disabled\n", port1);
goto done; goto done;
} }
portstatus = status; portstatus = status;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment