diff options
author | Johan Hovold <jhovold@gmail.com> | 2010-05-15 11:53:50 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-20 16:21:48 -0400 |
commit | a90131763dfd9a95f43071f0b67a737e6ca6a6c0 (patch) | |
tree | 93d1f3e753450054f5c446774859edb2e2deb156 /drivers/usb/serial | |
parent | 214916f2ec6701e1c9972f26c60b3dc37d3153c6 (diff) |
USB: cp210x: use generic open to start reading from device
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r-- | drivers/usb/serial/cp210x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c index 25e343ff61e7..ca27f2f8522d 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c | |||
@@ -379,7 +379,7 @@ static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port) | |||
379 | return -EPROTO; | 379 | return -EPROTO; |
380 | } | 380 | } |
381 | 381 | ||
382 | result = usb_serial_generic_submit_read_urb(port, GFP_KERNEL); | 382 | result = usb_serial_generic_open(tty, port); |
383 | if (result) | 383 | if (result) |
384 | return result; | 384 | return result; |
385 | 385 | ||