Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e5740b5d75af4ad9423911fe77d687f47e880a4d
Commit:     e5740b5d75af4ad9423911fe77d687f47e880a4d
Parent:     e8e30c765c5cfa5219918d3e5017fc563cf7ea03
Author:     Mark Glines <[EMAIL PROTECTED]>
AuthorDate: Wed Mar 14 11:55:28 2007 -0700
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Mon Mar 19 13:22:18 2007 -0700

    airprime: USB ID for Novatel EV620 mini PCI-E card
    
    Add an ID to recognise the Novatel EV620 wireless adapter.
    http://www.novatelwireless.com/products/expedite/ev620.html
    
    It looks like a mini PCI-Express adapter.  The mPCIE connector includes USB
    pins... the card shows up to the system as a USB device, and powers itself
    from the PCI bus.
    
    The card I have isn't activated yet, so I can't get a PPP session up yet, 
but
    I have tested basic serial communication successfully in both 2.6.18 and
    2.6.20 kernels, once the product ID was added.  (the driver changed quite a
    bit between the two revs.)  In both drivers, it responds to AT commands and
    such.
    
    Signed-off-by: Mark Glines <[EMAIL PROTECTED]>
    Cc: Pete Zaitcev <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/usb/serial/airprime.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/serial/airprime.c b/drivers/usb/serial/airprime.c
index 310a8b5..5b4ef96 100644
--- a/drivers/usb/serial/airprime.c
+++ b/drivers/usb/serial/airprime.c
@@ -18,11 +18,12 @@
 
 static struct usb_device_id id_table [] = {
        { USB_DEVICE(0x0c88, 0x17da) }, /* Kyocera Wireless KPC650/Passport */
+       { USB_DEVICE(0x1410, 0x1100) }, /* ExpressCard34 Qualcomm 3G CDMA */
        { USB_DEVICE(0x1410, 0x1110) }, /* Novatel Wireless Merlin CDMA */
        { USB_DEVICE(0x1410, 0x1130) }, /* Novatel Wireless S720 CDMA/EV-DO */
-       { USB_DEVICE(0x1410, 0x2110) }, /* Novatel Wireless U720 CDMA/EV-DO */
        { USB_DEVICE(0x1410, 0x1430) }, /* Novatel Merlin XU870 HSDPA/3G */
-       { USB_DEVICE(0x1410, 0x1100) }, /* ExpressCard34 Qualcomm 3G CDMA */
+       { USB_DEVICE(0x1410, 0x2100) }, /* Novatel Wireless EV620 CDMA/EV-DO */
+       { USB_DEVICE(0x1410, 0x2110) }, /* Novatel Wireless U720 CDMA/EV-DO */
        { USB_DEVICE(0x413c, 0x8115) }, /* Dell Wireless HSDPA 5500 */
        { },
 };
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to