mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 07:06:45 +07:00
V4L/DVB (13500): pvrusb2: Fix lingering 16KB FX2 Firmware issues
These are additional fixes to enable proper pvrusb2 support of 16KB sized FX2 firmware. Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
9081d90185
commit
75727460a6
@ -351,6 +351,7 @@ static const struct pvr2_device_desc pvr2_device_73xxx = {
|
||||
.flag_has_analogtuner = !0,
|
||||
.flag_has_composite = !0,
|
||||
.flag_has_svideo = !0,
|
||||
.flag_fx2_16kb = !0,
|
||||
.signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
|
||||
.digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE,
|
||||
.led_scheme = PVR2_LED_SCHEME_HAUPPAUGE,
|
||||
|
@ -1522,8 +1522,8 @@ static int pvr2_upload_firmware1(struct pvr2_hdw *hdw)
|
||||
|
||||
trace_firmware("Upload done (%d bytes sent)",ret);
|
||||
|
||||
/* We should have written 8192 bytes */
|
||||
if (ret == 8192) {
|
||||
/* We should have written fwsize bytes */
|
||||
if (ret == fwsize) {
|
||||
hdw->fw1_state = FW1_STATE_RELOAD;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user