[PATCH] USB: move usb-serial.h to include/linux/usb/
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / serial / airprime.c
blob62082532a8b346359899b2291c59a69a3b7bcfad
1 /*
2 * AirPrime CDMA Wireless Serial USB driver
4 * Copyright (C) 2005 Greg Kroah-Hartman <gregkh@suse.de>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 */
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/tty.h>
14 #include <linux/module.h>
15 #include <linux/usb.h>
16 #include <linux/usb/serial.h>
18 static struct usb_device_id id_table [] = {
19 { USB_DEVICE(0x0c88, 0x17da) }, /* Kyocera Wireless KPC650/Passport */
20 { USB_DEVICE(0xf3d, 0x0112) }, /* AirPrime CDMA Wireless PC Card */
21 { USB_DEVICE(0x1410, 0x1110) }, /* Novatel Wireless Merlin CDMA */
22 { USB_DEVICE(0x1199, 0x0112) }, /* Sierra Wireless Aircard 580 */
23 { USB_DEVICE(0x1199, 0x0218) }, /* Sierra Wireless MC5720 */
24 { },
26 MODULE_DEVICE_TABLE(usb, id_table);
28 static struct usb_driver airprime_driver = {
29 .name = "airprime",
30 .probe = usb_serial_probe,
31 .disconnect = usb_serial_disconnect,
32 .id_table = id_table,
33 .no_dynamic_id = 1,
36 static struct usb_serial_driver airprime_device = {
37 .driver = {
38 .owner = THIS_MODULE,
39 .name = "airprime",
41 .id_table = id_table,
42 .num_interrupt_in = NUM_DONT_CARE,
43 .num_bulk_in = NUM_DONT_CARE,
44 .num_bulk_out = NUM_DONT_CARE,
45 .num_ports = 1,
48 static int __init airprime_init(void)
50 int retval;
52 retval = usb_serial_register(&airprime_device);
53 if (retval)
54 return retval;
55 retval = usb_register(&airprime_driver);
56 if (retval)
57 usb_serial_deregister(&airprime_device);
58 return retval;
61 static void __exit airprime_exit(void)
63 usb_deregister(&airprime_driver);
64 usb_serial_deregister(&airprime_device);
67 module_init(airprime_init);
68 module_exit(airprime_exit);
69 MODULE_LICENSE("GPL");