2015-02-11 10:17:55 +00:00
|
|
|
From 19e17e411eb8eb971ee963f083ec8446dcd0538e Mon Sep 17 00:00:00 2001
|
|
|
|
From: P33M <P33M@github.com>
|
|
|
|
Date: Thu, 24 Jul 2014 21:24:03 +0100
|
|
|
|
Subject: [PATCH 055/114] usb: core: make overcurrent messages more prominent
|
|
|
|
|
|
|
|
Hub overcurrent messages are more serious than "debug". Increase loglevel.
|
|
|
|
---
|
|
|
|
drivers/usb/core/hub.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
--- a/drivers/usb/core/hub.c
|
|
|
|
+++ b/drivers/usb/core/hub.c
|
2015-02-13 07:38:27 +00:00
|
|
|
@@ -4923,7 +4923,7 @@ static void port_event(struct usb_hub *h
|
2015-02-11 10:17:55 +00:00
|
|
|
if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
|
|
|
|
u16 status = 0, unused;
|
|
|
|
|
|
|
|
- dev_dbg(&port_dev->dev, "over-current change\n");
|
|
|
|
+ dev_notice(&port_dev->dev, "over-current change\n");
|
|
|
|
usb_clear_port_feature(hdev, port1,
|
|
|
|
USB_PORT_FEAT_C_OVER_CURRENT);
|
|
|
|
msleep(100); /* Cool down */
|