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

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

staging: most: hdm-usb: hdm_usb: 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 86b368db
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -650,10 +650,8 @@ static int hdm_enqueue(struct most_interface *iface, int channel,
		return -ENODEV;

	urb = usb_alloc_urb(NO_ISOCHRONOUS_URB, GFP_ATOMIC);
	if (!urb) {
		dev_err(dev, "Failed to allocate URB\n");
	if (!urb)
		return -ENOMEM;
	}

	anchor = kzalloc(sizeof(*anchor), GFP_ATOMIC);
	if (!anchor) {