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

Commit 96cede53 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

USB: fix __must_check warnings in drivers/usb/class/

parent e7ccdfec
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -927,7 +927,9 @@ static int usblp_probe(struct usb_interface *intf,


	/* Retrieve and store the device ID string. */
	/* Retrieve and store the device ID string. */
	usblp_cache_device_id_string(usblp);
	usblp_cache_device_id_string(usblp);
	device_create_file(&intf->dev, &dev_attr_ieee1284_id);
	retval = device_create_file(&intf->dev, &dev_attr_ieee1284_id);
	if (retval)
		goto abort_intfdata;


#ifdef DEBUG
#ifdef DEBUG
	usblp_check_status(usblp, 0);
	usblp_check_status(usblp, 0);