blob: 62082532a8b346359899b2291c59a69a3b7bcfad [file] [log] [blame]
Greg KH3b86b202005-04-25 21:46:29 -07001/*
2 * AirPrime CDMA Wireless Serial USB driver
3 *
4 * Copyright (C) 2005 Greg Kroah-Hartman <gregkh@suse.de>
5 *
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 */
10
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>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070016#include <linux/usb/serial.h>
Greg KH3b86b202005-04-25 21:46:29 -070017
18static struct usb_device_id id_table [] = {
Timothy Sipples34ab86e2006-06-16 20:42:59 +090019 { USB_DEVICE(0x0c88, 0x17da) }, /* Kyocera Wireless KPC650/Passport */
David Hollis3a8c1e22005-09-22 00:49:39 -070020 { USB_DEVICE(0xf3d, 0x0112) }, /* AirPrime CDMA Wireless PC Card */
21 { USB_DEVICE(0x1410, 0x1110) }, /* Novatel Wireless Merlin CDMA */
Ken Brushb68f7de2006-05-08 20:24:12 -050022 { USB_DEVICE(0x1199, 0x0112) }, /* Sierra Wireless Aircard 580 */
Jeremy Fitzhardingeb10cee92006-05-31 11:21:52 -070023 { USB_DEVICE(0x1199, 0x0218) }, /* Sierra Wireless MC5720 */
Greg KH3b86b202005-04-25 21:46:29 -070024 { },
25};
26MODULE_DEVICE_TABLE(usb, id_table);
27
28static struct usb_driver airprime_driver = {
Greg KH3b86b202005-04-25 21:46:29 -070029 .name = "airprime",
30 .probe = usb_serial_probe,
31 .disconnect = usb_serial_disconnect,
32 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080033 .no_dynamic_id = 1,
Greg KH3b86b202005-04-25 21:46:29 -070034};
35
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070036static struct usb_serial_driver airprime_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070037 .driver = {
38 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070039 .name = "airprime",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070040 },
Greg KH3b86b202005-04-25 21:46:29 -070041 .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,
46};
47
48static int __init airprime_init(void)
49{
50 int retval;
51
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;
59}
60
61static void __exit airprime_exit(void)
62{
63 usb_deregister(&airprime_driver);
64 usb_serial_deregister(&airprime_device);
65}
66
67module_init(airprime_init);
68module_exit(airprime_exit);
69MODULE_LICENSE("GPL");