diff options
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r-- | drivers/bluetooth/bcm203x.c | 2 | ||||
-rw-r--r-- | drivers/bluetooth/bfusb.c | 8 | ||||
-rw-r--r-- | drivers/bluetooth/bluecard_cs.c | 2 | ||||
-rw-r--r-- | drivers/bluetooth/bpa10x.c | 2 | ||||
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 2 | ||||
-rw-r--r-- | drivers/bluetooth/btuart_cs.c | 2 | ||||
-rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 2 | ||||
-rw-r--r-- | drivers/bluetooth/hci_usb.c | 8 |
8 files changed, 14 insertions, 14 deletions
diff --git a/drivers/bluetooth/bcm203x.c b/drivers/bluetooth/bcm203x.c index 13ba729cdd57..67cdda43f229 100644 --- a/drivers/bluetooth/bcm203x.c +++ b/drivers/bluetooth/bcm203x.c | |||
@@ -82,7 +82,7 @@ struct bcm203x_data { | |||
82 | unsigned int fw_sent; | 82 | unsigned int fw_sent; |
83 | }; | 83 | }; |
84 | 84 | ||
85 | static void bcm203x_complete(struct urb *urb, struct pt_regs *regs) | 85 | static void bcm203x_complete(struct urb *urb) |
86 | { | 86 | { |
87 | struct bcm203x_data *data = urb->context; | 87 | struct bcm203x_data *data = urb->context; |
88 | struct usb_device *udev = urb->dev; | 88 | struct usb_device *udev = urb->dev; |
diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c index efcc28ec9d9a..31ade991aa91 100644 --- a/drivers/bluetooth/bfusb.c +++ b/drivers/bluetooth/bfusb.c | |||
@@ -95,8 +95,8 @@ struct bfusb_data_scb { | |||
95 | struct urb *urb; | 95 | struct urb *urb; |
96 | }; | 96 | }; |
97 | 97 | ||
98 | static void bfusb_tx_complete(struct urb *urb, struct pt_regs *regs); | 98 | static void bfusb_tx_complete(struct urb *urb); |
99 | static void bfusb_rx_complete(struct urb *urb, struct pt_regs *regs); | 99 | static void bfusb_rx_complete(struct urb *urb); |
100 | 100 | ||
101 | static struct urb *bfusb_get_completed(struct bfusb_data *data) | 101 | static struct urb *bfusb_get_completed(struct bfusb_data *data) |
102 | { | 102 | { |
@@ -190,7 +190,7 @@ static void bfusb_tx_wakeup(struct bfusb_data *data) | |||
190 | clear_bit(BFUSB_TX_PROCESS, &data->state); | 190 | clear_bit(BFUSB_TX_PROCESS, &data->state); |
191 | } | 191 | } |
192 | 192 | ||
193 | static void bfusb_tx_complete(struct urb *urb, struct pt_regs *regs) | 193 | static void bfusb_tx_complete(struct urb *urb) |
194 | { | 194 | { |
195 | struct sk_buff *skb = (struct sk_buff *) urb->context; | 195 | struct sk_buff *skb = (struct sk_buff *) urb->context; |
196 | struct bfusb_data *data = (struct bfusb_data *) skb->dev; | 196 | struct bfusb_data *data = (struct bfusb_data *) skb->dev; |
@@ -349,7 +349,7 @@ static inline int bfusb_recv_block(struct bfusb_data *data, int hdr, unsigned ch | |||
349 | return 0; | 349 | return 0; |
350 | } | 350 | } |
351 | 351 | ||
352 | static void bfusb_rx_complete(struct urb *urb, struct pt_regs *regs) | 352 | static void bfusb_rx_complete(struct urb *urb) |
353 | { | 353 | { |
354 | struct sk_buff *skb = (struct sk_buff *) urb->context; | 354 | struct sk_buff *skb = (struct sk_buff *) urb->context; |
355 | struct bfusb_data *data = (struct bfusb_data *) skb->dev; | 355 | struct bfusb_data *data = (struct bfusb_data *) skb->dev; |
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c index 8eebf9ca3786..845b8680032a 100644 --- a/drivers/bluetooth/bluecard_cs.c +++ b/drivers/bluetooth/bluecard_cs.c | |||
@@ -497,7 +497,7 @@ static void bluecard_receive(bluecard_info_t *info, unsigned int offset) | |||
497 | } | 497 | } |
498 | 498 | ||
499 | 499 | ||
500 | static irqreturn_t bluecard_interrupt(int irq, void *dev_inst, struct pt_regs *regs) | 500 | static irqreturn_t bluecard_interrupt(int irq, void *dev_inst) |
501 | { | 501 | { |
502 | bluecard_info_t *info = dev_inst; | 502 | bluecard_info_t *info = dev_inst; |
503 | unsigned int iobase; | 503 | unsigned int iobase; |
diff --git a/drivers/bluetooth/bpa10x.c b/drivers/bluetooth/bpa10x.c index e0231dc2cb1a..9fca6513562d 100644 --- a/drivers/bluetooth/bpa10x.c +++ b/drivers/bluetooth/bpa10x.c | |||
@@ -263,7 +263,7 @@ static void bpa10x_wakeup(struct bpa10x_data *data) | |||
263 | } | 263 | } |
264 | } | 264 | } |
265 | 265 | ||
266 | static void bpa10x_complete(struct urb *urb, struct pt_regs *regs) | 266 | static void bpa10x_complete(struct urb *urb) |
267 | { | 267 | { |
268 | struct bpa10x_data *data = urb->context; | 268 | struct bpa10x_data *data = urb->context; |
269 | unsigned char *buf = urb->transfer_buffer; | 269 | unsigned char *buf = urb->transfer_buffer; |
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index df7bb016df49..3a96a0babc6a 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
@@ -338,7 +338,7 @@ static void bt3c_receive(bt3c_info_t *info) | |||
338 | } | 338 | } |
339 | 339 | ||
340 | 340 | ||
341 | static irqreturn_t bt3c_interrupt(int irq, void *dev_inst, struct pt_regs *regs) | 341 | static irqreturn_t bt3c_interrupt(int irq, void *dev_inst) |
342 | { | 342 | { |
343 | bt3c_info_t *info = dev_inst; | 343 | bt3c_info_t *info = dev_inst; |
344 | unsigned int iobase; | 344 | unsigned int iobase; |
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c index 746ccca97f6f..3b29086b7c3f 100644 --- a/drivers/bluetooth/btuart_cs.c +++ b/drivers/bluetooth/btuart_cs.c | |||
@@ -288,7 +288,7 @@ static void btuart_receive(btuart_info_t *info) | |||
288 | } | 288 | } |
289 | 289 | ||
290 | 290 | ||
291 | static irqreturn_t btuart_interrupt(int irq, void *dev_inst, struct pt_regs *regs) | 291 | static irqreturn_t btuart_interrupt(int irq, void *dev_inst) |
292 | { | 292 | { |
293 | btuart_info_t *info = dev_inst; | 293 | btuart_info_t *info = dev_inst; |
294 | unsigned int iobase; | 294 | unsigned int iobase; |
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index 0e99def8a1e3..e7c800f4c3ad 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
@@ -291,7 +291,7 @@ static void dtl1_receive(dtl1_info_t *info) | |||
291 | } | 291 | } |
292 | 292 | ||
293 | 293 | ||
294 | static irqreturn_t dtl1_interrupt(int irq, void *dev_inst, struct pt_regs *regs) | 294 | static irqreturn_t dtl1_interrupt(int irq, void *dev_inst) |
295 | { | 295 | { |
296 | dtl1_info_t *info = dev_inst; | 296 | dtl1_info_t *info = dev_inst; |
297 | unsigned int iobase; | 297 | unsigned int iobase; |
diff --git a/drivers/bluetooth/hci_usb.c b/drivers/bluetooth/hci_usb.c index 0801af4ad2b9..7565642a007a 100644 --- a/drivers/bluetooth/hci_usb.c +++ b/drivers/bluetooth/hci_usb.c | |||
@@ -176,8 +176,8 @@ static struct _urb *_urb_dequeue(struct _urb_queue *q) | |||
176 | return _urb; | 176 | return _urb; |
177 | } | 177 | } |
178 | 178 | ||
179 | static void hci_usb_rx_complete(struct urb *urb, struct pt_regs *regs); | 179 | static void hci_usb_rx_complete(struct urb *urb); |
180 | static void hci_usb_tx_complete(struct urb *urb, struct pt_regs *regs); | 180 | static void hci_usb_tx_complete(struct urb *urb); |
181 | 181 | ||
182 | #define __pending_tx(husb, type) (&husb->pending_tx[type-1]) | 182 | #define __pending_tx(husb, type) (&husb->pending_tx[type-1]) |
183 | #define __pending_q(husb, type) (&husb->pending_q[type-1]) | 183 | #define __pending_q(husb, type) (&husb->pending_q[type-1]) |
@@ -732,7 +732,7 @@ static inline int __recv_frame(struct hci_usb *husb, int type, void *data, int c | |||
732 | return 0; | 732 | return 0; |
733 | } | 733 | } |
734 | 734 | ||
735 | static void hci_usb_rx_complete(struct urb *urb, struct pt_regs *regs) | 735 | static void hci_usb_rx_complete(struct urb *urb) |
736 | { | 736 | { |
737 | struct _urb *_urb = container_of(urb, struct _urb, urb); | 737 | struct _urb *_urb = container_of(urb, struct _urb, urb); |
738 | struct hci_usb *husb = (void *) urb->context; | 738 | struct hci_usb *husb = (void *) urb->context; |
@@ -786,7 +786,7 @@ unlock: | |||
786 | read_unlock(&husb->completion_lock); | 786 | read_unlock(&husb->completion_lock); |
787 | } | 787 | } |
788 | 788 | ||
789 | static void hci_usb_tx_complete(struct urb *urb, struct pt_regs *regs) | 789 | static void hci_usb_tx_complete(struct urb *urb) |
790 | { | 790 | { |
791 | struct _urb *_urb = container_of(urb, struct _urb, urb); | 791 | struct _urb *_urb = container_of(urb, struct _urb, urb); |
792 | struct hci_usb *husb = (void *) urb->context; | 792 | struct hci_usb *husb = (void *) urb->context; |