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

    USB: ftdi_sio: add support for BeagleBone rev A5+

to the 3.2-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:
     usb-ftdi_sio-add-support-for-beaglebone-rev-a5.patch
and it can be found in the queue-3.2 subdirectory.

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


>From 444aa7fa9bd752d19ce472d3e02558b987c3cc67 Mon Sep 17 00:00:00 2001
From: Peter Korsgaard <[email protected]>
Date: Wed, 29 Feb 2012 10:05:37 +0100
Subject: USB: ftdi_sio: add support for BeagleBone rev A5+

From: Peter Korsgaard <[email protected]>

commit 444aa7fa9bd752d19ce472d3e02558b987c3cc67 upstream.

BeagleBone changed to the default FTDI 0403:6010 id in rev A5 to make life
easier for Windows users, so we need a similar workaround as the Calao
board to support it.

Signed-off-by: Peter Korsgaard <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/usb/serial/ftdi_sio.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/drivers/usb/serial/ftdi_sio.c
+++ b/drivers/usb/serial/ftdi_sio.c
@@ -1763,8 +1763,8 @@ static int ftdi_8u2232c_probe(struct usb
 
        dbg("%s", __func__);
 
-       if ((udev->manufacturer) &&
-           (strcmp(udev->manufacturer, "CALAO Systems") == 0))
+       if ((udev->manufacturer && !strcmp(udev->manufacturer, "CALAO 
Systems")) ||
+           (udev->product && !strcmp(udev->product, "BeagleBone/XDS100")))
                return ftdi_jtag_probe(serial);
 
        return 0;


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

queue-3.2/usb-ftdi_sio-add-support-for-beaglebone-rev-a5.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