This is a note to let you know that I've just added the patch titled
USB: cdc-acm: Remove Motorola/Telit H24 serial interfaces from ACM driver
to the 3.14-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-cdc-acm-remove-motorola-telit-h24-serial-interfaces-from-acm-driver.patch
and it can be found in the queue-3.14 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 895d240d1db0b2736d779200788e4c4aea28a0c6 Mon Sep 17 00:00:00 2001
From: Michael Ulbricht <[email protected]>
Date: Tue, 25 Mar 2014 10:34:18 +0100
Subject: USB: cdc-acm: Remove Motorola/Telit H24 serial interfaces from ACM
driver
From: Michael Ulbricht <[email protected]>
commit 895d240d1db0b2736d779200788e4c4aea28a0c6 upstream.
By specifying NO_UNION_NORMAL the ACM driver does only use the first two
USB interfaces (modem data & control). The AT Port, Diagnostic and NMEA
interfaces are left to the USB serial driver.
Signed-off-by: Michael Ulbricht <[email protected]>
Signed-off-by: Alexander Stein <[email protected]>
Signed-off-by: Oliver Neukum <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/usb/class/cdc-acm.c | 28 +++++++++++++++++++++-------
1 file changed, 21 insertions(+), 7 deletions(-)
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -1652,13 +1652,27 @@ static const struct usb_device_id acm_id
},
/* Motorola H24 HSPA module: */
{ USB_DEVICE(0x22b8, 0x2d91) }, /* modem
*/
- { USB_DEVICE(0x22b8, 0x2d92) }, /* modem + diagnostics
*/
- { USB_DEVICE(0x22b8, 0x2d93) }, /* modem + AT port
*/
- { USB_DEVICE(0x22b8, 0x2d95) }, /* modem + AT port + diagnostics
*/
- { USB_DEVICE(0x22b8, 0x2d96) }, /* modem + NMEA
*/
- { USB_DEVICE(0x22b8, 0x2d97) }, /* modem + diagnostics + NMEA
*/
- { USB_DEVICE(0x22b8, 0x2d99) }, /* modem + AT port + NMEA
*/
- { USB_DEVICE(0x22b8, 0x2d9a) }, /* modem + AT port + diagnostics + NMEA
*/
+ { USB_DEVICE(0x22b8, 0x2d92), /* modem + diagnostics
*/
+ .driver_info = NO_UNION_NORMAL, /* handle only modem interface
*/
+ },
+ { USB_DEVICE(0x22b8, 0x2d93), /* modem + AT port
*/
+ .driver_info = NO_UNION_NORMAL, /* handle only modem interface
*/
+ },
+ { USB_DEVICE(0x22b8, 0x2d95), /* modem + AT port + diagnostics
*/
+ .driver_info = NO_UNION_NORMAL, /* handle only modem interface
*/
+ },
+ { USB_DEVICE(0x22b8, 0x2d96), /* modem + NMEA
*/
+ .driver_info = NO_UNION_NORMAL, /* handle only modem interface
*/
+ },
+ { USB_DEVICE(0x22b8, 0x2d97), /* modem + diagnostics + NMEA
*/
+ .driver_info = NO_UNION_NORMAL, /* handle only modem interface
*/
+ },
+ { USB_DEVICE(0x22b8, 0x2d99), /* modem + AT port + NMEA
*/
+ .driver_info = NO_UNION_NORMAL, /* handle only modem interface
*/
+ },
+ { USB_DEVICE(0x22b8, 0x2d9a), /* modem + AT port + diagnostics + NMEA
*/
+ .driver_info = NO_UNION_NORMAL, /* handle only modem interface
*/
+ },
{ USB_DEVICE(0x0572, 0x1329), /* Hummingbird huc56s (Conexant) */
.driver_info = NO_UNION_NORMAL, /* union descriptor misplaced on
Patches currently in stable-queue which might be from
[email protected] are
queue-3.14/usb-cdc-acm-remove-motorola-telit-h24-serial-interfaces-from-acm-driver.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