Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 26e65c47 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "USB: gadget: u_bam: ratelimit the IN ep queue failure messages"

parents 714b918b 0b6495cb
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -434,7 +434,8 @@ static void gbam_write_data_tohost(struct gbam_port *port)
		ret = usb_ep_queue(ep, req, GFP_ATOMIC);
		spin_lock(&port->port_lock_dl);
		if (ret) {
			pr_err("%s: usb epIn failed with %d\n", __func__, ret);
			pr_err_ratelimited("%s: usb epIn failed with %d\n",
					__func__, ret);
			list_add(&req->list, &d->tx_idle);
			dev_kfree_skb_any(skb);
			break;