27 lines
908 B
Diff
27 lines
908 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(-)
|
||
|
|
||
|
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
|
||
|
index b649fef..5f8d914 100644
|
||
|
--- a/drivers/usb/core/hub.c
|
||
|
+++ b/drivers/usb/core/hub.c
|
||
|
@@ -4923,7 +4923,7 @@ static void port_event(struct usb_hub *hub, int port1)
|
||
|
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 */
|
||
|
--
|
||
|
1.8.3.2
|
||
|
|