Commit 392ba7bc authored by Ian Abbott's avatar Ian Abbott Committed by Greg Kroah-Hartman

staging: comedi: vmk80xx: use auto_attach() hook

Use the new `auto_attach()` hook in the `struct comedi_driver` instead
of the old `attach_usb()` hook.
Signed-off-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0a577b82
...@@ -1209,9 +1209,10 @@ static int vmk80xx_attach(struct comedi_device *cdev, ...@@ -1209,9 +1209,10 @@ static int vmk80xx_attach(struct comedi_device *cdev,
} }
/* called via comedi_usb_auto_config() */ /* called via comedi_usb_auto_config() */
static int vmk80xx_attach_usb(struct comedi_device *cdev, static int vmk80xx_auto_attach(struct comedi_device *cdev,
struct usb_interface *intf) unsigned long context_unused)
{ {
struct usb_interface *intf = comedi_to_usb_interface(cdev);
int i; int i;
int ret; int ret;
...@@ -1246,7 +1247,7 @@ static struct comedi_driver vmk80xx_driver = { ...@@ -1246,7 +1247,7 @@ static struct comedi_driver vmk80xx_driver = {
.driver_name = "vmk80xx", .driver_name = "vmk80xx",
.attach = vmk80xx_attach, .attach = vmk80xx_attach,
.detach = vmk80xx_detach, .detach = vmk80xx_detach,
.attach_usb = vmk80xx_attach_usb, .auto_attach = vmk80xx_auto_attach,
}; };
static int vmk80xx_usb_probe(struct usb_interface *intf, static int vmk80xx_usb_probe(struct usb_interface *intf,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment