Commit 79106049 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

[PATCH] USB: Fix problem of sending the wrong device_id to the usb serial driver on probe()

parent 3df911ef
......@@ -910,7 +910,7 @@ int usb_serial_probe(struct usb_interface *interface,
kfree (serial);
return -EIO;
}
retval = type->probe (serial, id);
retval = type->probe (serial, id_pattern);
module_put(type->owner);
if (retval < 0) {
......
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