diff options
author | Jonas Jonsson <jonas@ludd.ltu.se> | 2015-11-22 05:47:18 -0500 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2015-11-23 04:32:59 -0500 |
commit | a0e80fbd56b4573de997c9a088a33abbc1121400 (patch) | |
tree | 6964d880b85fa6650584a5e65d5fd5dfccd5a2a9 | |
parent | f33a7f72e5fc033daccbb8d4753d7c5c41a4d67b (diff) |
USB: serial: Another Infineon flash loader USB ID
The flash loader has been seen on a Telit UE910 modem. The flash loader
is a bit special, it presents both an ACM and CDC Data interface but
only the latter is useful. Unless a magic string is sent to the device
it will disappear and the regular modem device appears instead.
Signed-off-by: Jonas Jonsson <jonas@ludd.ltu.se>
Tested-by: Daniele Palmas <dnlplm@gmail.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
-rw-r--r-- | drivers/usb/serial/usb-serial-simple.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/serial/usb-serial-simple.c b/drivers/usb/serial/usb-serial-simple.c index 3658662898fc..a204782ae530 100644 --- a/drivers/usb/serial/usb-serial-simple.c +++ b/drivers/usb/serial/usb-serial-simple.c | |||
@@ -53,6 +53,7 @@ DEVICE(funsoft, FUNSOFT_IDS); | |||
53 | 53 | ||
54 | /* Infineon Flashloader driver */ | 54 | /* Infineon Flashloader driver */ |
55 | #define FLASHLOADER_IDS() \ | 55 | #define FLASHLOADER_IDS() \ |
56 | { USB_DEVICE_INTERFACE_CLASS(0x058b, 0x0041, USB_CLASS_CDC_DATA) }, \ | ||
56 | { USB_DEVICE(0x8087, 0x0716) } | 57 | { USB_DEVICE(0x8087, 0x0716) } |
57 | DEVICE(flashloader, FLASHLOADER_IDS); | 58 | DEVICE(flashloader, FLASHLOADER_IDS); |
58 | 59 | ||