diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
commit | 44aefd2706bb6f5b65ba2c38cd89e7609e2b43d3 (patch) | |
tree | 93824f573767da634fbc82c388b6d33cc454212b /drivers/usb/serial/io_ti.c | |
parent | c1a26e7d40fb814716950122353a1a556844286b (diff) | |
parent | 7d12e780e003f93433d49ce78cfedf4b4c52adc5 (diff) |
Merge git://git.infradead.org/~dhowells/irq-2.6
* git://git.infradead.org/~dhowells/irq-2.6:
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
IRQ: Typedef the IRQ handler function type
IRQ: Typedef the IRQ flow handler function type
Diffstat (limited to 'drivers/usb/serial/io_ti.c')
-rw-r--r-- | drivers/usb/serial/io_ti.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index 17c5b1d2311a..ee0c921e1520 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c | |||
@@ -1697,7 +1697,7 @@ static void handle_new_lsr (struct edgeport_port *edge_port, int lsr_data, __u8 | |||
1697 | } | 1697 | } |
1698 | 1698 | ||
1699 | 1699 | ||
1700 | static void edge_interrupt_callback (struct urb *urb, struct pt_regs *regs) | 1700 | static void edge_interrupt_callback (struct urb *urb) |
1701 | { | 1701 | { |
1702 | struct edgeport_serial *edge_serial = (struct edgeport_serial *)urb->context; | 1702 | struct edgeport_serial *edge_serial = (struct edgeport_serial *)urb->context; |
1703 | struct usb_serial_port *port; | 1703 | struct usb_serial_port *port; |
@@ -1787,7 +1787,7 @@ exit: | |||
1787 | __FUNCTION__, status); | 1787 | __FUNCTION__, status); |
1788 | } | 1788 | } |
1789 | 1789 | ||
1790 | static void edge_bulk_in_callback (struct urb *urb, struct pt_regs *regs) | 1790 | static void edge_bulk_in_callback (struct urb *urb) |
1791 | { | 1791 | { |
1792 | struct edgeport_port *edge_port = (struct edgeport_port *)urb->context; | 1792 | struct edgeport_port *edge_port = (struct edgeport_port *)urb->context; |
1793 | unsigned char *data = urb->transfer_buffer; | 1793 | unsigned char *data = urb->transfer_buffer; |
@@ -1879,7 +1879,7 @@ static void edge_tty_recv(struct device *dev, struct tty_struct *tty, unsigned c | |||
1879 | tty_flip_buffer_push(tty); | 1879 | tty_flip_buffer_push(tty); |
1880 | } | 1880 | } |
1881 | 1881 | ||
1882 | static void edge_bulk_out_callback (struct urb *urb, struct pt_regs *regs) | 1882 | static void edge_bulk_out_callback (struct urb *urb) |
1883 | { | 1883 | { |
1884 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; | 1884 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; |
1885 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); | 1885 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); |