Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.10-rc2 47 lines 1.2 kB view raw
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 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#define DRIVER_AUTHOR "Thomas Hergenhahn@web.de http://libnodave.sf.net" 20#define DRIVER_DESC "Driver for Siemens USB/MPI adapter" 21 22 23static const struct usb_device_id id_table[] = { 24 /* Vendor and product id for 6ES7-972-0CB20-0XA0 */ 25 { USB_DEVICE(0x908, 0x0004) }, 26 { }, 27}; 28MODULE_DEVICE_TABLE(usb, id_table); 29 30static struct usb_serial_driver siemens_usb_mpi_device = { 31 .driver = { 32 .owner = THIS_MODULE, 33 .name = "siemens_mpi", 34 }, 35 .id_table = id_table, 36 .num_ports = 1, 37}; 38 39static struct usb_serial_driver * const serial_drivers[] = { 40 &siemens_usb_mpi_device, NULL 41}; 42 43module_usb_serial_driver(serial_drivers, id_table); 44 45MODULE_AUTHOR(DRIVER_AUTHOR); 46MODULE_DESCRIPTION(DRIVER_DESC); 47MODULE_LICENSE("GPL");