Commit eb8e0ee4 authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab

V4L/DVB (4241): Fix faulty encoder error recovery in pvrusb2

Signed-off-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent a761f431
...@@ -1098,12 +1098,13 @@ void pvr2_hdw_subsys_bit_chg_no_lock(struct pvr2_hdw *hdw, ...@@ -1098,12 +1098,13 @@ void pvr2_hdw_subsys_bit_chg_no_lock(struct pvr2_hdw *hdw,
if (!hdw->flag_ok) return; if (!hdw->flag_ok) return;
msk &= PVR2_SUBSYS_ALL; msk &= PVR2_SUBSYS_ALL;
nmsk = (hdw->subsys_enabled_mask & ~msk) | (val & msk);
nmsk &= PVR2_SUBSYS_ALL;
for (;;) { for (;;) {
tryCount++; tryCount++;
vmsk = hdw->subsys_enabled_mask & PVR2_SUBSYS_ALL; if (!((nmsk ^ hdw->subsys_enabled_mask) &
nmsk = (vmsk & ~msk) | (val & msk); PVR2_SUBSYS_ALL)) break;
if (!(nmsk ^ vmsk)) break;
if (tryCount > 4) { if (tryCount > 4) {
pvr2_trace(PVR2_TRACE_ERROR_LEGS, pvr2_trace(PVR2_TRACE_ERROR_LEGS,
"Too many retries when configuring device;" "Too many retries when configuring device;"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment