Message ID | 20250122000103.GB12162@altlinux.org (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | AF9005: fix typo in the bitmask size | expand |
diff --git a/drivers/media/usb/dvb-usb/af9005-fe.c b/drivers/media/usb/dvb-usb/af9005-fe.c index 404e56b32145f1e6..4621c1d24d578ede 100644 --- a/drivers/media/usb/dvb-usb/af9005-fe.c +++ b/drivers/media/usb/dvb-usb/af9005-fe.c @@ -453,7 +453,7 @@ static int af9005_fe_read_status(struct dvb_frontend *fe, ret = af9005_read_register_bits(state->d, xd_r_mp2if_sync_byte_locked, mp2if_sync_byte_locked_pos, - mp2if_sync_byte_locked_pos, &temp); + mp2if_sync_byte_locked_len, &temp); if (ret) return ret; if (temp)
Found by ALT Linux Team (altlinux.org) and Linux Verification Center (linuxtesting.org) Fixes: af4e067e1dcf ("V4L/DVB (5625): Add support for the AF9005 demodulator from Afatech") Signed-off-by: Alexey V. Vissarionov <gremlin@altlinux.org>