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

Commit da1b5c95 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10140): gp8psk: fix incorrect return code (EINVAL instead of -EINVAL)

parent 9bb7cde7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@ int gp8psk_bcm4500_reload(struct dvb_usb_device *d)
	/* load BCM4500 firmware */
	if (gp_product_id == USB_PID_GENPIX_8PSK_REV_1_WARM)
		if (gp8psk_load_bcm4500fw(d))
			return EINVAL;
			return -EINVAL;
	return 0;
}