rtl8xxxu: add support for rtl8188eu
[openwrt/staging/rmilecki.git] / package / kernel / mac80211 / patches / 650-0005-rtl8xxxu-Reduce-console-noise-when-removing-the-kern.patch
1 From d39e7f8bbab83a2a4145fb8b4701882ef8ba0eeb Mon Sep 17 00:00:00 2001
2 From: Jes Sorensen <Jes.Sorensen@redhat.com>
3 Date: Thu, 23 Jun 2016 12:37:38 -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 ---
12 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 --- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
16 +++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
17 @@ -5267,7 +5267,7 @@ static void rtl8xxxu_int_complete(struct
18 if (ret)
19 usb_unanchor_urb(urb);
20 } else {
21 - dev_info(dev, "%s: Error %i\n", __func__, urb->status);
22 + dev_dbg(dev, "%s: Error %i\n", __func__, urb->status);
23 }
24 }
25