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

Commit 820ddfa6 authored by Hans de Goede's avatar Hans de Goede Committed by Mauro Carvalho Chehab
Browse files

[media] radio-shark*: Remove work-around for dangling pointer in usb intfdata



Recent kernels properly clear the usb intfdata pointer when another
driver fails to bind (in the radio-shark* case the usbhid driver would try
to bind first.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ac6eb458
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -286,15 +286,6 @@ static int usb_shark_probe(struct usb_interface *intf,
	if (!shark->transfer_buffer)
		goto err_alloc_buffer;

	/*
	 * Work around a bug in usbhid/hid-core.c, where it leaves a dangling
	 * pointer in intfdata causing v4l2-device.c to not set it. Which
	 * results in usb_shark_disconnect() referencing the dangling pointer
	 *
	 * REMOVE (as soon as the above bug is fixed, patch submitted)
	 */
	usb_set_intfdata(intf, NULL);

	shark->v4l2_dev.release = usb_shark_release;
	v4l2_device_set_name(&shark->v4l2_dev, DRV_NAME, &shark_instance);
	retval = v4l2_device_register(&intf->dev, &shark->v4l2_dev);
+0 −9
Original line number Diff line number Diff line
@@ -258,15 +258,6 @@ static int usb_shark_probe(struct usb_interface *intf,
	if (!shark->transfer_buffer)
		goto err_alloc_buffer;

	/*
	 * Work around a bug in usbhid/hid-core.c, where it leaves a dangling
	 * pointer in intfdata causing v4l2-device.c to not set it. Which
	 * results in usb_shark_disconnect() referencing the dangling pointer
	 *
	 * REMOVE (as soon as the above bug is fixed, patch submitted)
	 */
	usb_set_intfdata(intf, NULL);

	shark->v4l2_dev.release = usb_shark_release;
	v4l2_device_set_name(&shark->v4l2_dev, DRV_NAME, &shark_instance);
	retval = v4l2_device_register(&intf->dev, &shark->v4l2_dev);