toneport.c (f2bd242fa114df07ab8ed0d2f445a9a313e3aaa1) toneport.c (12865cac38cc9e808ce8b479f4bb12fd00bfee7c)
1/*
2 * Line 6 Linux USB driver
3 *
4 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
5 * Emil Myhrman (emil.myhrman@gmail.com)
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 as

--- 543 unchanged lines hidden (view full) ---

552};
553
554/*
555 Probe USB device.
556*/
557static int toneport_probe(struct usb_interface *interface,
558 const struct usb_device_id *id)
559{
1/*
2 * Line 6 Linux USB driver
3 *
4 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
5 * Emil Myhrman (emil.myhrman@gmail.com)
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 as

--- 543 unchanged lines hidden (view full) ---

552};
553
554/*
555 Probe USB device.
556*/
557static int toneport_probe(struct usb_interface *interface,
558 const struct usb_device_id *id)
559{
560 return line6_probe(interface, id,
560 return line6_probe(interface, id, "Line6-TonePort",
561 &toneport_properties_table[id->driver_info],
562 toneport_init, sizeof(struct usb_line6_toneport));
563}
564
565static struct usb_driver toneport_driver = {
566 .name = KBUILD_MODNAME,
567 .probe = toneport_probe,
568 .disconnect = line6_disconnect,

--- 12 unchanged lines hidden ---
561 &toneport_properties_table[id->driver_info],
562 toneport_init, sizeof(struct usb_line6_toneport));
563}
564
565static struct usb_driver toneport_driver = {
566 .name = KBUILD_MODNAME,
567 .probe = toneport_probe,
568 .disconnect = line6_disconnect,

--- 12 unchanged lines hidden ---