A few patches ago, I removed the reset_resume callback, changing it to
resume instead. Now that the usb-serial core supports reset_resume, put
this driver callback back as well, so it should work identically to how
it was originally.
Now if this function really is doing what it should be doing, well,
that's a different story, but we are at least doing the identical thing
that we were before...
Cc: Johan Hovold <[email protected]>
Cc: Alan Stern <[email protected]>
Cc: Rusty Russell <[email protected]>
Cc: Mauro Carvalho Chehab <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
return result;
}
-static int ch341_resume(struct usb_serial *serial)
+static int ch341_reset_resume(struct usb_serial *serial)
{
struct ch341_private *priv;
.tiocmset = ch341_tiocmset,
.read_int_callback = ch341_read_int_callback,
.attach = ch341_attach,
- .resume = ch341_resume,
+ .resume = ch341_reset_resume,
};
static struct usb_serial_driver * const serial_drivers[] = {