[PATCH] USB Serial: move name to driver structure
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / serial / airprime.c
blob1f29d883732720602336e341fd3cb2490f084cfe
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_driver airprime_device = {
34 .driver = {
35 .owner = THIS_MODULE,
36 .name = "airprime",
38 .id_table = id_table,
39 .num_interrupt_in = NUM_DONT_CARE,
40 .num_bulk_in = NUM_DONT_CARE,
41 .num_bulk_out = NUM_DONT_CARE,
42 .num_ports = 1,
45 static int __init airprime_init(void)
47 int retval;
49 retval = usb_serial_register(&airprime_device);
50 if (retval)
51 return retval;
52 retval = usb_register(&airprime_driver);
53 if (retval)
54 usb_serial_deregister(&airprime_device);
55 return retval;
58 static void __exit airprime_exit(void)
60 usb_deregister(&airprime_driver);
61 usb_serial_deregister(&airprime_device);
64 module_init(airprime_init);
65 module_exit(airprime_exit);
66 MODULE_LICENSE("GPL");