airprime.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/tty.h>
  13. #include <linux/module.h>
  14. #include <linux/usb.h>
  15. #include "usb-serial.h"
  16. static struct usb_device_id id_table [] = {
  17. { USB_DEVICE(0xf3d, 0x0112) }, /* AirPrime CDMA Wireless PC Card */
  18. { USB_DEVICE(0x1410, 0x1110) }, /* Novatel Wireless Merlin CDMA */
  19. { USB_DEVICE(0x1199, 0x0112) }, /* Sierra Wireless Aircard 580 */
  20. { USB_DEVICE(0x1199, 0x0218) }, /* Sierra Wireless MC5720 */
  21. { },
  22. };
  23. MODULE_DEVICE_TABLE(usb, id_table);
  24. static struct usb_driver airprime_driver = {
  25. .name = "airprime",
  26. .probe = usb_serial_probe,
  27. .disconnect = usb_serial_disconnect,
  28. .id_table = id_table,
  29. .no_dynamic_id = 1,
  30. };
  31. static struct usb_serial_driver airprime_device = {
  32. .driver = {
  33. .owner = THIS_MODULE,
  34. .name = "airprime",
  35. },
  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,
  41. };
  42. static int __init airprime_init(void)
  43. {
  44. int retval;
  45. retval = usb_serial_register(&airprime_device);
  46. if (retval)
  47. return retval;
  48. retval = usb_register(&airprime_driver);
  49. if (retval)
  50. usb_serial_deregister(&airprime_device);
  51. return retval;
  52. }
  53. static void __exit airprime_exit(void)
  54. {
  55. usb_deregister(&airprime_driver);
  56. usb_serial_deregister(&airprime_device);
  57. }
  58. module_init(airprime_init);
  59. module_exit(airprime_exit);
  60. MODULE_LICENSE("GPL");