In transfer/replay mode the frontend lock status was never updated.
This caused a 'black screen' if VDR switched from transfer mode to
live mode on the same transponder.
Thanks to Marco Schluessler for spotting the problem.
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
        if (av7110->fe_synced == synced)
                return 0;
 
-       if (av7110->playing)
+       if (av7110->playing) {
+               av7110->fe_synced = synced;
                return 0;
+       }
 
        if (mutex_lock_interruptible(&av7110->pid_mutex))
                return -ERESTARTSYS;