podhd.c (6eb3db91f2b68cbbcc1b4256333dc683afb54a73) podhd.c (12865cac38cc9e808ce8b479f4bb12fd00bfee7c)
1/*
2 * Line 6 Pod HD
3 *
4 * Copyright (C) 2011 Stefan Hajnoczi <stefanha@gmail.com>
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.

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

164};
165
166/*
167 Probe USB device.
168*/
169static int podhd_probe(struct usb_interface *interface,
170 const struct usb_device_id *id)
171{
1/*
2 * Line 6 Pod HD
3 *
4 * Copyright (C) 2011 Stefan Hajnoczi <stefanha@gmail.com>
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.

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

164};
165
166/*
167 Probe USB device.
168*/
169static int podhd_probe(struct usb_interface *interface,
170 const struct usb_device_id *id)
171{
172 return line6_probe(interface, id,
172 return line6_probe(interface, id, "Line6-PODHD",
173 &podhd_properties_table[id->driver_info],
174 podhd_init, sizeof(struct usb_line6));
175}
176
177static struct usb_driver podhd_driver = {
178 .name = KBUILD_MODNAME,
179 .probe = podhd_probe,
180 .disconnect = line6_disconnect,

--- 12 unchanged lines hidden ---
173 &podhd_properties_table[id->driver_info],
174 podhd_init, sizeof(struct usb_line6));
175}
176
177static struct usb_driver podhd_driver = {
178 .name = KBUILD_MODNAME,
179 .probe = podhd_probe,
180 .disconnect = line6_disconnect,

--- 12 unchanged lines hidden ---