From 1c1eaba8e72768156db4faff3a2c3a6ca7dea129 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Wed, 16 May 2012 08:36:13 -0700 Subject: [PATCH] USB: serial: ch341: make the reset_resume callback actually work. I hooked up the wrong callback in my previous patch, this should fix it. Reported-by: Alan Stern Cc: Johan Hovold Cc: Rusty Russell Cc: Mauro Carvalho Chehab Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/ch341.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/serial/ch341.c b/drivers/usb/serial/ch341.c index 94813853937..cabd1b15ddc 100644 --- a/drivers/usb/serial/ch341.c +++ b/drivers/usb/serial/ch341.c @@ -607,7 +607,7 @@ static struct usb_serial_driver ch341_device = { .tiocmset = ch341_tiocmset, .read_int_callback = ch341_read_int_callback, .attach = ch341_attach, - .resume = ch341_reset_resume, + .reset_resume = ch341_reset_resume, }; static struct usb_serial_driver * const serial_drivers[] = { -- 2.41.0