Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236953
b: refs/heads/master
c: e88399b
h: refs/heads/master
i:
  236951: 56eac28
v: v3
  • Loading branch information
Helmut Schaa authored and John W. Linville committed Jan 31, 2011
1 parent 7c00264 commit f847191
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bcf3cfd047d599cd0e6758c422bd7a4835c00d4a
refs/heads/master: e88399bcdb71f2cdb195410151edf9c04980adbd
11 changes: 0 additions & 11 deletions trunk/drivers/net/wireless/rt2x00/rt2x00.h
Original file line number Diff line number Diff line change
Expand Up @@ -511,11 +511,6 @@ struct rt2x00lib_ops {
*/
irq_handler_t irq_handler;

/*
* Threaded Interrupt handlers.
*/
irq_handler_t irq_handler_thread;

/*
* TX status tasklet handler.
*/
Expand Down Expand Up @@ -894,12 +889,6 @@ struct rt2x00_dev {
*/
const struct firmware *fw;

/*
* Interrupt values, stored between interrupt service routine
* and interrupt thread routine.
*/
u32 irqvalue[2];

/*
* FIFO for storing tx status reports between isr and tasklet.
*/
Expand Down
7 changes: 3 additions & 4 deletions trunk/drivers/net/wireless/rt2x00/rt2x00pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,9 @@ int rt2x00pci_initialize(struct rt2x00_dev *rt2x00dev)
/*
* Register interrupt handler.
*/
status = request_threaded_irq(rt2x00dev->irq,
rt2x00dev->ops->lib->irq_handler,
rt2x00dev->ops->lib->irq_handler_thread,
IRQF_SHARED, rt2x00dev->name, rt2x00dev);
status = request_irq(rt2x00dev->irq,
rt2x00dev->ops->lib->irq_handler,
IRQF_SHARED, rt2x00dev->name, rt2x00dev);
if (status) {
ERROR(rt2x00dev, "IRQ %d allocation failed (error %d).\n",
rt2x00dev->irq, status);
Expand Down

0 comments on commit f847191

Please sign in to comment.