package/devel/binutils: Update to 2.27
[openwrt/staging/chunkeey.git] / package / kernel / mac80211 / patches / 651-0002-rtl8xxxu-Reduce-console-noise-when-removing-the-kern.patch
1 From 78383ac951816a64657ca3e17868ad8c7c1b9393 Mon Sep 17 00:00:00 2001
2 From: Jes Sorensen <Jes.Sorensen@redhat.com>
3 Date: Thu, 23 Jun 2016 14:35:53 -0400
4 Subject: [PATCH] rtl8xxxu: Reduce console noise when removing the kernel
5 module
6
7 USB urbs will return with a status != 0 when rmmod'ing the driver. No
8 need to fill the log with messages from rtl8xxxu_int_complete()
9
10 Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
11 Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
12 ---
13 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 --- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
17 +++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
18 @@ -5267,7 +5267,7 @@ static void rtl8xxxu_int_complete(struct
19 if (ret)
20 usb_unanchor_urb(urb);
21 } else {
22 - dev_info(dev, "%s: Error %i\n", __func__, urb->status);
23 + dev_dbg(dev, "%s: Error %i\n", __func__, urb->status);
24 }
25 }
26