rtl8xxxu: Reduce console noise when removing the kernel module

USB urbs will return with a status != 0 when rmmod'ing the driver. No
need to fill the log with messages from rtl8xxxu_int_complete()

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Jes Sorensen 2016-06-23 14:35:53 -04:00 committed by Kalle Valo
parent efcb32883f
commit 78383ac951

View file

@ -5267,7 +5267,7 @@ static void rtl8xxxu_int_complete(struct urb *urb)
if (ret)
usb_unanchor_urb(urb);
} else {
dev_info(dev, "%s: Error %i\n", __func__, urb->status);
dev_dbg(dev, "%s: Error %i\n", __func__, urb->status);
}
}