On Mon, 2008-02-04 at 08:03 -0800, Greg KH wrote: > On Mon, Feb 04, 2008 at 09:05:34AM -0500, Dan Williams wrote: > > Signed-off-by: Dan Williams <[EMAIL PROTECTED]> > > > > diff --git a/drivers/usb/serial/airprime.c b/drivers/usb/serial/airprime.c > > index 77bb893..16ce823 100644 > > --- a/drivers/usb/serial/airprime.c > > +++ b/drivers/usb/serial/airprime.c > > @@ -18,6 +18,7 @@ > > > > static struct usb_device_id id_table [] = { > > { USB_DEVICE(0x0c88, 0x17da) }, /* Kyocera Wireless KPC650/Passport */ > > + { USB_DEVICE(0x0c88, 0x180a) }, /* Kyocera Wireless KPC680 */ > > Hm, are you sure that the sierra driver will not work instead? I want > to get rid of the airprime driver as I don't think it is needed, sierra > should work for these instead. > > Or maybe the option driver, if that is the chip inside of it.
Now with more Sierra goodness, and less airprime suckage. Is sierra pretty generic? I honestly have no idea what's really inside this card, but it does seem to work with sierra at about the same speeds as with airprime. Signed-off-by: Dan Williams <[EMAIL PROTECTED]> diff --git a/drivers/usb/serial/sierra.c b/drivers/usb/serial/sierra.c index c295d04..b8f39e1 100644 --- a/drivers/usb/serial/sierra.c +++ b/drivers/usb/serial/sierra.c @@ -117,6 +117,7 @@ static struct usb_device_id id_table [] = { { USB_DEVICE(0x1199, 0x6851) }, /* Sierra Wireless AirCard 881 */ { USB_DEVICE(0x1199, 0x6852) }, /* Sierra Wireless AirCard 880 E */ { USB_DEVICE(0x1199, 0x6853) }, /* Sierra Wireless AirCard 881 E */ + { USB_DEVICE(0x0c88, 0x180a) }, /* Kyocera KPC680 */ { USB_DEVICE(0x1199, 0x0112), .driver_info = DEVICE_1_PORT }, /* Sierra Wireless AirCard 580 */ { USB_DEVICE(0x0F3D, 0x0112), .driver_info = DEVICE_1_PORT }, /* Airprime/Sierra PC 5220 */ @@ -155,6 +156,7 @@ static struct usb_device_id id_table_3port [] = { { USB_DEVICE(0x1199, 0x6851) }, /* Sierra Wireless AirCard 881 */ { USB_DEVICE(0x1199, 0x6852) }, /* Sierra Wireless AirCard 880E */ { USB_DEVICE(0x1199, 0x6853) }, /* Sierra Wireless AirCard 881E */ + { USB_DEVICE(0x0c88, 0x180a) }, /* Kyocera KPC680 */ { } }; - To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html