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/message/fusion/mptbase.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/message/fusion/mptbase.c')
-rw-r--r-- | drivers/message/fusion/mptbase.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c index 29d0635cce1d..e5c72719debc 100644 --- a/drivers/message/fusion/mptbase.c +++ b/drivers/message/fusion/mptbase.c | |||
@@ -122,7 +122,7 @@ static DECLARE_WAIT_QUEUE_HEAD(mpt_waitq); | |||
122 | /* | 122 | /* |
123 | * Forward protos... | 123 | * Forward protos... |
124 | */ | 124 | */ |
125 | static irqreturn_t mpt_interrupt(int irq, void *bus_id, struct pt_regs *r); | 125 | static irqreturn_t mpt_interrupt(int irq, void *bus_id); |
126 | static int mpt_base_reply(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req, MPT_FRAME_HDR *reply); | 126 | static int mpt_base_reply(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req, MPT_FRAME_HDR *reply); |
127 | static int mpt_handshake_req_reply_wait(MPT_ADAPTER *ioc, int reqBytes, | 127 | static int mpt_handshake_req_reply_wait(MPT_ADAPTER *ioc, int reqBytes, |
128 | u32 *req, int replyBytes, u16 *u16reply, int maxwait, | 128 | u32 *req, int replyBytes, u16 *u16reply, int maxwait, |
@@ -351,7 +351,6 @@ mpt_reply(MPT_ADAPTER *ioc, u32 pa) | |||
351 | * mpt_interrupt - MPT adapter (IOC) specific interrupt handler. | 351 | * mpt_interrupt - MPT adapter (IOC) specific interrupt handler. |
352 | * @irq: irq number (not used) | 352 | * @irq: irq number (not used) |
353 | * @bus_id: bus identifier cookie == pointer to MPT_ADAPTER structure | 353 | * @bus_id: bus identifier cookie == pointer to MPT_ADAPTER structure |
354 | * @r: pt_regs pointer (not used) | ||
355 | * | 354 | * |
356 | * This routine is registered via the request_irq() kernel API call, | 355 | * This routine is registered via the request_irq() kernel API call, |
357 | * and handles all interrupts generated from a specific MPT adapter | 356 | * and handles all interrupts generated from a specific MPT adapter |
@@ -365,7 +364,7 @@ mpt_reply(MPT_ADAPTER *ioc, u32 pa) | |||
365 | * the protocol-specific details of the MPT request completion. | 364 | * the protocol-specific details of the MPT request completion. |
366 | */ | 365 | */ |
367 | static irqreturn_t | 366 | static irqreturn_t |
368 | mpt_interrupt(int irq, void *bus_id, struct pt_regs *r) | 367 | mpt_interrupt(int irq, void *bus_id) |
369 | { | 368 | { |
370 | MPT_ADAPTER *ioc = bus_id; | 369 | MPT_ADAPTER *ioc = bus_id; |
371 | u32 pa = CHIPREG_READ32_dmasync(&ioc->chip->ReplyFifo); | 370 | u32 pa = CHIPREG_READ32_dmasync(&ioc->chip->ReplyFifo); |