[CONNECTOR]: async connector mode.
[linux-2.6/verdex.git] / drivers / usb / serial / airprime.c
blob926d4c2c16001e0769f76b5b9d5d7f20ed83ac62
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 "usb-serial.h"
18 static struct usb_device_id id_table [] = {
19 { USB_DEVICE(0xf3d, 0x0112) }, /* AirPrime CDMA Wireless PC Card */
20 { USB_DEVICE(0x1410, 0x1110) }, /* Novatel Wireless Merlin CDMA */
21 { },
23 MODULE_DEVICE_TABLE(usb, id_table);
25 static struct usb_driver airprime_driver = {
26 .owner = THIS_MODULE,
27 .name = "airprime",
28 .probe = usb_serial_probe,
29 .disconnect = usb_serial_disconnect,
30 .id_table = id_table,
33 static struct usb_serial_device_type airprime_device = {
34 .owner = THIS_MODULE,
35 .name = "airprime",
36 .id_table = id_table,
37 .num_interrupt_in = NUM_DONT_CARE,
38 .num_bulk_in = NUM_DONT_CARE,
39 .num_bulk_out = NUM_DONT_CARE,
40 .num_ports = 1,
43 static int __init airprime_init(void)
45 int retval;
47 retval = usb_serial_register(&airprime_device);
48 if (retval)
49 return retval;
50 retval = usb_register(&airprime_driver);
51 if (retval)
52 usb_serial_deregister(&airprime_device);
53 return retval;
56 static void __exit airprime_exit(void)
58 usb_deregister(&airprime_driver);
59 usb_serial_deregister(&airprime_device);
62 module_init(airprime_init);
63 module_exit(airprime_exit);
64 MODULE_LICENSE("GPL");