Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
siemens_mpi.c
Go to the documentation of this file.
1 /*
2  * Siemens USB-MPI Serial USB driver
3  *
4  * Copyright (C) 2005 Thomas Hergenhahn <[email protected]>
5  * Copyright (C) 2005,2008 Greg Kroah-Hartman <[email protected]>
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 
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/tty.h>
15 #include <linux/module.h>
16 #include <linux/usb.h>
17 #include <linux/usb/serial.h>
18 
19 /* Version Information */
20 #define DRIVER_VERSION "Version 0.1 09/26/2005"
21 #define DRIVER_AUTHOR "Thomas [email protected] http://libnodave.sf.net"
22 #define DRIVER_DESC "Driver for Siemens USB/MPI adapter"
23 
24 
25 static const struct usb_device_id id_table[] = {
26  /* Vendor and product id for 6ES7-972-0CB20-0XA0 */
27  { USB_DEVICE(0x908, 0x0004) },
28  { },
29 };
30 MODULE_DEVICE_TABLE(usb, id_table);
31 
32 static struct usb_serial_driver siemens_usb_mpi_device = {
33  .driver = {
34  .owner = THIS_MODULE,
35  .name = "siemens_mpi",
36  },
37  .id_table = id_table,
38  .num_ports = 1,
39 };
40 
41 static struct usb_serial_driver * const serial_drivers[] = {
42  &siemens_usb_mpi_device, NULL
43 };
44 
45 module_usb_serial_driver(serial_drivers, id_table);
46 
49 MODULE_LICENSE("GPL");