[media] mxl111sf: fix error on stream stop in mxl111sf_ep6_streaming_ctrl()
authorMichael Krufky <mkrufky@linuxtv.org>
Sun, 18 Mar 2012 17:35:57 +0000 (14:35 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 20 Mar 2012 01:24:40 +0000 (22:24 -0300)
Remove unnecessary register access in mxl111sf_ep6_streaming_ctrl()

This code breaks driver operation in kernel 3.3 and later, although
it works properly in 3.2  Disable register access to 0x12 for now.

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Cc: stable@kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/dvb-usb/mxl111sf.c

index 38ef0253d3b5b9c79aa1daade821f241f90e6800..81305de2fea5ca10fb68d0f263aa44afd131cc3c 100644 (file)
@@ -351,15 +351,13 @@ static int mxl111sf_ep6_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
                                              adap_state->ep6_clockphase,
                                              0, 0);
                mxl_fail(ret);
+#if 0
        } else {
                ret = mxl111sf_disable_656_port(state);
                mxl_fail(ret);
+#endif
        }
 
-       mxl111sf_read_reg(state, 0x12, &tmp);
-       tmp &= ~0x04;
-       mxl111sf_write_reg(state, 0x12, tmp);
-
        return ret;
 }