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

Commit 7190c178 authored by Wolfram Sang's avatar Wolfram Sang Committed by Greg Kroah-Hartman
Browse files

usb: usbip: stub_rx: don't print error when allocating urb fails



kmalloc will print enough information in case of failure.

Signed-off-by: default avatarWolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2bd07d3c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -461,7 +461,6 @@ static void stub_recv_cmd_submit(struct stub_device *sdev,
		priv->urb = usb_alloc_urb(0, GFP_KERNEL);

	if (!priv->urb) {
		dev_err(&udev->dev, "malloc urb\n");
		usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
		return;
	}