forked from Minki/linux
[media] dvb_usb_lmedm04: don't crash if firmware is not loaded
There is a missing error handling when no firmware file found. It seems that this is more of a problem with udev-182+. However, so far udev-182 is only a problem on first ever plug. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Tested-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
397e972350
commit
b50b3e0732
@ -878,6 +878,10 @@ static int lme_firmware_switch(struct usb_device *udev, int cold)
|
||||
fw_lme = fw_c_rs2000;
|
||||
ret = request_firmware(&fw, fw_lme, &udev->dev);
|
||||
dvb_usb_lme2510_firmware = TUNER_RS2000;
|
||||
if (ret == 0)
|
||||
break;
|
||||
info("FRM No Firmware Found - please install");
|
||||
cold_fw = 0;
|
||||
break;
|
||||
default:
|
||||
fw_lme = fw_c_s7395;
|
||||
|
Loading…
Reference in New Issue
Block a user