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/scsi/advansys.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/scsi/advansys.c')
-rw-r--r-- | drivers/scsi/advansys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/advansys.c b/drivers/scsi/advansys.c index 773f02e3b10b..83695416b2c9 100644 --- a/drivers/scsi/advansys.c +++ b/drivers/scsi/advansys.c | |||
@@ -3999,7 +3999,7 @@ STATIC PortAddr _asc_def_iop_base[]; | |||
3999 | * advansys.h contains function prototypes for functions global to Linux. | 3999 | * advansys.h contains function prototypes for functions global to Linux. |
4000 | */ | 4000 | */ |
4001 | 4001 | ||
4002 | STATIC irqreturn_t advansys_interrupt(int, void *, struct pt_regs *); | 4002 | STATIC irqreturn_t advansys_interrupt(int, void *); |
4003 | STATIC int advansys_slave_configure(struct scsi_device *); | 4003 | STATIC int advansys_slave_configure(struct scsi_device *); |
4004 | STATIC void asc_scsi_done_list(struct scsi_cmnd *); | 4004 | STATIC void asc_scsi_done_list(struct scsi_cmnd *); |
4005 | STATIC int asc_execute_scsi_cmnd(struct scsi_cmnd *); | 4005 | STATIC int asc_execute_scsi_cmnd(struct scsi_cmnd *); |
@@ -5997,7 +5997,7 @@ static struct scsi_host_template driver_template = { | |||
5997 | * an AdvanSys adapter. | 5997 | * an AdvanSys adapter. |
5998 | */ | 5998 | */ |
5999 | STATIC irqreturn_t | 5999 | STATIC irqreturn_t |
6000 | advansys_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 6000 | advansys_interrupt(int irq, void *dev_id) |
6001 | { | 6001 | { |
6002 | ulong flags; | 6002 | ulong flags; |
6003 | int i; | 6003 | int i; |