siemens_mpi.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Siemens USB-MPI Serial USB driver
  3. *
  4. * Copyright (C) 2005 Thomas Hergenhahn <thomas.hergenhahn@suse.de>
  5. * Copyright (C) 2005,2008 Greg Kroah-Hartman <gregkh@suse.de>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License version
  9. * 2 as published by the Free Software Foundation.
  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 <linux/usb/serial.h>
  17. /* Version Information */
  18. #define DRIVER_VERSION "Version 0.1 09/26/2005"
  19. #define DRIVER_AUTHOR "Thomas Hergenhahn@web.de http://libnodave.sf.net"
  20. #define DRIVER_DESC "Driver for Siemens USB/MPI adapter"
  21. static const struct usb_device_id id_table[] = {
  22. /* Vendor and product id for 6ES7-972-0CB20-0XA0 */
  23. { USB_DEVICE(0x908, 0x0004) },
  24. { },
  25. };
  26. MODULE_DEVICE_TABLE(usb, id_table);
  27. static struct usb_driver siemens_usb_mpi_driver = {
  28. .name = "siemens_mpi",
  29. .probe = usb_serial_probe,
  30. .disconnect = usb_serial_disconnect,
  31. .id_table = id_table,
  32. };
  33. static struct usb_serial_driver siemens_usb_mpi_device = {
  34. .driver = {
  35. .owner = THIS_MODULE,
  36. .name = "siemens_mpi",
  37. },
  38. .id_table = id_table,
  39. .num_ports = 1,
  40. };
  41. static struct usb_serial_driver * const serial_drivers[] = {
  42. &siemens_usb_mpi_device, NULL
  43. };
  44. module_usb_serial_driver(siemens_usb_mpi_driver, serial_drivers);
  45. MODULE_AUTHOR(DRIVER_AUTHOR);
  46. MODULE_DESCRIPTION(DRIVER_DESC);
  47. MODULE_LICENSE("GPL");