Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

USB: simple: add Dynastream ANT USB-m Stick device support

Add support for ANT USB-m Stick from Dynastream Innovations, by listing
USB pid

[34366.944805] usb 6-1: New USB device found, idVendor=0fcf, idProduct=1009
[34366.944817] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[34366.944824] usb 6-1: Product: ANT USB-m Stick
[34366.944831] usb 6-1: Manufacturer: Dynastream Innovations

Device reported (https://code.google.com/p/antpm/issues/detail?id=5) to
work through:
$ modprobe usbserial vendor=0x0fcf product=0x1009

Signed-off-by: Kristóf Ralovich <kristof.ralovich@gmail.com>
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Kristóf Ralovich and committed by
Greg Kroah-Hartman
2240c365 c5637e51

+2 -1
+2 -1
drivers/usb/serial/usb-serial-simple.c
··· 71 71 72 72 /* Suunto ANT+ USB Driver */ 73 73 #define SUUNTO_IDS() \ 74 - { USB_DEVICE(0x0fcf, 0x1008) } 74 + { USB_DEVICE(0x0fcf, 0x1008) }, \ 75 + { USB_DEVICE(0x0fcf, 0x1009) } /* Dynastream ANT USB-m Stick */ 75 76 DEVICE(suunto, SUUNTO_IDS); 76 77 77 78 /* Siemens USB/MPI adapter */