diff options
Diffstat (limited to 'drivers/usb/serial/kl5kusb105.c')
-rw-r--r-- | drivers/usb/serial/kl5kusb105.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/serial/kl5kusb105.c b/drivers/usb/serial/kl5kusb105.c index 2a2f3e2da055..17e205699c2b 100644 --- a/drivers/usb/serial/kl5kusb105.c +++ b/drivers/usb/serial/kl5kusb105.c | |||
@@ -80,11 +80,11 @@ static void klsi_105_close (struct usb_serial_port *port, | |||
80 | static int klsi_105_write (struct usb_serial_port *port, | 80 | static int klsi_105_write (struct usb_serial_port *port, |
81 | const unsigned char *buf, | 81 | const unsigned char *buf, |
82 | int count); | 82 | int count); |
83 | static void klsi_105_write_bulk_callback (struct urb *urb, struct pt_regs *regs); | 83 | static void klsi_105_write_bulk_callback (struct urb *urb); |
84 | static int klsi_105_chars_in_buffer (struct usb_serial_port *port); | 84 | static int klsi_105_chars_in_buffer (struct usb_serial_port *port); |
85 | static int klsi_105_write_room (struct usb_serial_port *port); | 85 | static int klsi_105_write_room (struct usb_serial_port *port); |
86 | 86 | ||
87 | static void klsi_105_read_bulk_callback (struct urb *urb, struct pt_regs *regs); | 87 | static void klsi_105_read_bulk_callback (struct urb *urb); |
88 | static void klsi_105_set_termios (struct usb_serial_port *port, | 88 | static void klsi_105_set_termios (struct usb_serial_port *port, |
89 | struct termios * old); | 89 | struct termios * old); |
90 | static int klsi_105_ioctl (struct usb_serial_port *port, | 90 | static int klsi_105_ioctl (struct usb_serial_port *port, |
@@ -556,7 +556,7 @@ exit: | |||
556 | return bytes_sent; /* that's how much we wrote */ | 556 | return bytes_sent; /* that's how much we wrote */ |
557 | } /* klsi_105_write */ | 557 | } /* klsi_105_write */ |
558 | 558 | ||
559 | static void klsi_105_write_bulk_callback ( struct urb *urb, struct pt_regs *regs) | 559 | static void klsi_105_write_bulk_callback ( struct urb *urb) |
560 | { | 560 | { |
561 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; | 561 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; |
562 | 562 | ||
@@ -616,7 +616,7 @@ static int klsi_105_write_room (struct usb_serial_port *port) | |||
616 | 616 | ||
617 | 617 | ||
618 | 618 | ||
619 | static void klsi_105_read_bulk_callback (struct urb *urb, struct pt_regs *regs) | 619 | static void klsi_105_read_bulk_callback (struct urb *urb) |
620 | { | 620 | { |
621 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; | 621 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; |
622 | struct klsi_105_private *priv = usb_get_serial_port_data(port); | 622 | struct klsi_105_private *priv = usb_get_serial_port_data(port); |