blob: 694b205f9b736e90f42e995b9d90de1a2d5bc72a [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>
16#include "usb-serial.h"
17
18static struct usb_device_id id_table [] = {
David Hollis3a8c1e22005-09-22 00:49:39 -070019 { USB_DEVICE(0xf3d, 0x0112) }, /* AirPrime CDMA Wireless PC Card */
20 { USB_DEVICE(0x1410, 0x1110) }, /* Novatel Wireless Merlin CDMA */
Ken Brushb68f7de2006-05-08 20:24:12 -050021 { USB_DEVICE(0x1199, 0x0112) }, /* Sierra Wireless Aircard 580 */
Greg KH3b86b202005-04-25 21:46:29 -070022 { },
23};
24MODULE_DEVICE_TABLE(usb, id_table);
25
26static struct usb_driver airprime_driver = {
Greg KH3b86b202005-04-25 21:46:29 -070027 .name = "airprime",
28 .probe = usb_serial_probe,
29 .disconnect = usb_serial_disconnect,
30 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080031 .no_dynamic_id = 1,
Greg KH3b86b202005-04-25 21:46:29 -070032};
33
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070034static struct usb_serial_driver airprime_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070035 .driver = {
36 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070037 .name = "airprime",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070038 },
Greg KH3b86b202005-04-25 21:46:29 -070039 .id_table = id_table,
40 .num_interrupt_in = NUM_DONT_CARE,
41 .num_bulk_in = NUM_DONT_CARE,
42 .num_bulk_out = NUM_DONT_CARE,
43 .num_ports = 1,
44};
45
46static int __init airprime_init(void)
47{
48 int retval;
49
50 retval = usb_serial_register(&airprime_device);
51 if (retval)
52 return retval;
53 retval = usb_register(&airprime_driver);
54 if (retval)
55 usb_serial_deregister(&airprime_device);
56 return retval;
57}
58
59static void __exit airprime_exit(void)
60{
61 usb_deregister(&airprime_driver);
62 usb_serial_deregister(&airprime_device);
63}
64
65module_init(airprime_init);
66module_exit(airprime_exit);
67MODULE_LICENSE("GPL");