Greg KH | 3b86b20 | 2005-04-25 21:46:29 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 18 | static struct usb_device_id id_table [] = { |
| 19 | { USB_DEVICE(0xf3d, 0x0112) }, |
| 20 | { }, |
| 21 | }; |
| 22 | MODULE_DEVICE_TABLE(usb, id_table); |
| 23 | |
| 24 | static struct usb_driver airprime_driver = { |
| 25 | .owner = THIS_MODULE, |
| 26 | .name = "airprime", |
| 27 | .probe = usb_serial_probe, |
| 28 | .disconnect = usb_serial_disconnect, |
| 29 | .id_table = id_table, |
| 30 | }; |
| 31 | |
| 32 | static struct usb_serial_device_type airprime_device = { |
| 33 | .owner = THIS_MODULE, |
| 34 | .name = "airprime", |
| 35 | .id_table = id_table, |
| 36 | .num_interrupt_in = NUM_DONT_CARE, |
| 37 | .num_bulk_in = NUM_DONT_CARE, |
| 38 | .num_bulk_out = NUM_DONT_CARE, |
| 39 | .num_ports = 1, |
| 40 | }; |
| 41 | |
| 42 | static int __init airprime_init(void) |
| 43 | { |
| 44 | int retval; |
| 45 | |
| 46 | retval = usb_serial_register(&airprime_device); |
| 47 | if (retval) |
| 48 | return retval; |
| 49 | retval = usb_register(&airprime_driver); |
| 50 | if (retval) |
| 51 | usb_serial_deregister(&airprime_device); |
| 52 | return retval; |
| 53 | } |
| 54 | |
| 55 | static void __exit airprime_exit(void) |
| 56 | { |
| 57 | usb_deregister(&airprime_driver); |
| 58 | usb_serial_deregister(&airprime_device); |
| 59 | } |
| 60 | |
| 61 | module_init(airprime_init); |
| 62 | module_exit(airprime_exit); |
| 63 | MODULE_LICENSE("GPL"); |