blob: 0d3108af1d044a75bc58a7e78510e1e25c8d682f [file] [log] [blame]
Greg Kroah-Hartman5aa63752008-12-03 22:30:04 -08001/*
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
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 Hergenhahn@web.de http://libnodave.sf.net"
22#define DRIVER_DESC "Driver for Siemens USB/MPI adapter"
23
24
Németh Márton7d40d7e2010-01-10 15:34:24 +010025static const struct usb_device_id id_table[] = {
Greg Kroah-Hartman5aa63752008-12-03 22:30:04 -080026 /* Vendor and product id for 6ES7-972-0CB20-0XA0 */
27 { USB_DEVICE(0x908, 0x0004) },
28 { },
29};
30MODULE_DEVICE_TABLE(usb, id_table);
31
32static struct usb_driver siemens_usb_mpi_driver = {
33 .name = "siemens_mpi",
Greg Kroah-Hartman5aa63752008-12-03 22:30:04 -080034 .id_table = id_table,
35};
36
37static struct usb_serial_driver siemens_usb_mpi_device = {
38 .driver = {
39 .owner = THIS_MODULE,
40 .name = "siemens_mpi",
41 },
42 .id_table = id_table,
Greg Kroah-Hartman5aa63752008-12-03 22:30:04 -080043 .num_ports = 1,
44};
45
Alan Sternd8603222012-02-23 14:57:25 -050046static struct usb_serial_driver * const serial_drivers[] = {
47 &siemens_usb_mpi_device, NULL
48};
49
Greg Kroah-Hartmanb4264af2012-02-28 13:12:29 -080050module_usb_serial_driver(siemens_usb_mpi_driver, serial_drivers);
Greg Kroah-Hartman5aa63752008-12-03 22:30:04 -080051
Greg Kroah-Hartman5aa63752008-12-03 22:30:04 -080052MODULE_AUTHOR(DRIVER_AUTHOR);
53MODULE_DESCRIPTION(DRIVER_DESC);
54MODULE_LICENSE("GPL");