pod.c (9b6ff3fb9644b962b39816c571e38ddc1412fea0) pod.c (12865cac38cc9e808ce8b479f4bb12fd00bfee7c)
1/*
2 * Line 6 Linux USB driver
3 *
4 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.

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

556};
557
558/*
559 Probe USB device.
560*/
561static int pod_probe(struct usb_interface *interface,
562 const struct usb_device_id *id)
563{
1/*
2 * Line 6 Linux USB driver
3 *
4 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.

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

556};
557
558/*
559 Probe USB device.
560*/
561static int pod_probe(struct usb_interface *interface,
562 const struct usb_device_id *id)
563{
564 return line6_probe(interface, id,
564 return line6_probe(interface, id, "Line6-POD",
565 &pod_properties_table[id->driver_info],
566 pod_init, sizeof(struct usb_line6_pod));
567}
568
569static struct usb_driver pod_driver = {
570 .name = KBUILD_MODNAME,
571 .probe = pod_probe,
572 .disconnect = line6_disconnect,

--- 12 unchanged lines hidden ---
565 &pod_properties_table[id->driver_info],
566 pod_init, sizeof(struct usb_line6_pod));
567}
568
569static struct usb_driver pod_driver = {
570 .name = KBUILD_MODNAME,
571 .probe = pod_probe,
572 .disconnect = line6_disconnect,

--- 12 unchanged lines hidden ---