9b74de00f7
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> SVN-Revision: 44433
21 lines
790 B
Diff
21 lines
790 B
Diff
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
|
|
@@ -4923,7 +4923,7 @@ static void port_event(struct usb_hub *h
|
|
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 */
|