mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
27 lines
869 B
Diff
27 lines
869 B
Diff
|
From 5018dc559136e2bca24973e71ed8747adf0f37f3 Mon Sep 17 00:00:00 2001
|
||
|
From: Phil Elwell <phil@raspberrypi.com>
|
||
|
Date: Mon, 5 Oct 2020 15:41:15 +0100
|
||
|
Subject: [PATCH] SQUASH: USB: gadget: f_hid: remove more spam
|
||
|
|
||
|
Tidying up the previous patch to this file dropped the deletion of a
|
||
|
particularly noisy error message. Restore its removal.
|
||
|
|
||
|
See: https://github.com/raspberrypi/linux/issues/3870
|
||
|
|
||
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
||
|
---
|
||
|
drivers/usb/gadget/function/f_hid.c | 2 --
|
||
|
1 file changed, 2 deletions(-)
|
||
|
|
||
|
--- a/drivers/usb/gadget/function/f_hid.c
|
||
|
+++ b/drivers/usb/gadget/function/f_hid.c
|
||
|
@@ -411,8 +411,6 @@ try_again:
|
||
|
}
|
||
|
status = usb_ep_queue(hidg->in_ep, req, GFP_ATOMIC);
|
||
|
if (status < 0) {
|
||
|
- ERROR(hidg->func.config->cdev,
|
||
|
- "usb_ep_queue error on int endpoint %zd\n", status);
|
||
|
goto release_write_pending;
|
||
|
} else {
|
||
|
status = count;
|