variax.c (6eb3db91f2b68cbbcc1b4256333dc683afb54a73) | variax.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. --- 269 unchanged lines hidden (view full) --- 278}; 279 280/* 281 Probe USB device. 282*/ 283static int variax_probe(struct usb_interface *interface, 284 const struct usb_device_id *id) 285{ | 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. --- 269 unchanged lines hidden (view full) --- 278}; 279 280/* 281 Probe USB device. 282*/ 283static int variax_probe(struct usb_interface *interface, 284 const struct usb_device_id *id) 285{ |
286 return line6_probe(interface, id, | 286 return line6_probe(interface, id, "Line6-Variax", |
287 &variax_properties_table[id->driver_info], 288 variax_init, sizeof(struct usb_line6_variax)); 289} 290 291static struct usb_driver variax_driver = { 292 .name = KBUILD_MODNAME, 293 .probe = variax_probe, 294 .disconnect = line6_disconnect, --- 12 unchanged lines hidden --- | 287 &variax_properties_table[id->driver_info], 288 variax_init, sizeof(struct usb_line6_variax)); 289} 290 291static struct usb_driver variax_driver = { 292 .name = KBUILD_MODNAME, 293 .probe = variax_probe, 294 .disconnect = line6_disconnect, --- 12 unchanged lines hidden --- |