This is a note to let you know that I've just added the patch titled

    [media] mxl111sf: fix error on stream stop in mxl111sf_ep6_streaming_ctrl()

to the 3.3-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     mxl111sf-fix-error-on-stream-stop-in-mxl111sf_ep6_streaming_ctrl.patch
and it can be found in the queue-3.3 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From 3be5bb71fbf18f83cb88b54a62a78e03e5a4f30a Mon Sep 17 00:00:00 2001
From: Michael Krufky <[email protected]>
Date: Sun, 18 Mar 2012 14:35:57 -0300
Subject: [media] mxl111sf: fix error on stream stop in 
mxl111sf_ep6_streaming_ctrl()

From: Michael Krufky <[email protected]>

commit 3be5bb71fbf18f83cb88b54a62a78e03e5a4f30a upstream.

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 <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/media/dvb/dvb-usb/mxl111sf.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

--- a/drivers/media/dvb/dvb-usb/mxl111sf.c
+++ b/drivers/media/dvb/dvb-usb/mxl111sf.c
@@ -351,15 +351,13 @@ static int mxl111sf_ep6_streaming_ctrl(s
                                              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;
 }
 


Patches currently in stable-queue which might be from [email protected] are

queue-3.3/mxl111sf-fix-error-on-stream-stop-in-mxl111sf_ep6_streaming_ctrl.patch
queue-3.3/au8522-bug-fix-enable-modulation-after-tune-instead-of-before-tuning.patch
queue-3.3/pvrusb2-fix-7mhz-8mhz-dvb-t-tuner-support-for-hvr1900-rev-d1f5.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to