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/53c7xx.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/53c7xx.c')
-rw-r--r-- | drivers/scsi/53c7xx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/53c7xx.c b/drivers/scsi/53c7xx.c index acf292736b4e..640536ef77dc 100644 --- a/drivers/scsi/53c7xx.c +++ b/drivers/scsi/53c7xx.c | |||
@@ -323,7 +323,7 @@ static int shutdown (struct Scsi_Host *host); | |||
323 | static void abnormal_finished (struct NCR53c7x0_cmd *cmd, int result); | 323 | static void abnormal_finished (struct NCR53c7x0_cmd *cmd, int result); |
324 | static int disable (struct Scsi_Host *host); | 324 | static int disable (struct Scsi_Host *host); |
325 | static int NCR53c7xx_run_tests (struct Scsi_Host *host); | 325 | static int NCR53c7xx_run_tests (struct Scsi_Host *host); |
326 | static irqreturn_t NCR53c7x0_intr(int irq, void *dev_id, struct pt_regs * regs); | 326 | static irqreturn_t NCR53c7x0_intr(int irq, void *dev_id); |
327 | static void NCR53c7x0_intfly (struct Scsi_Host *host); | 327 | static void NCR53c7x0_intfly (struct Scsi_Host *host); |
328 | static int ncr_halt (struct Scsi_Host *host); | 328 | static int ncr_halt (struct Scsi_Host *host); |
329 | static void intr_phase_mismatch (struct Scsi_Host *host, struct NCR53c7x0_cmd | 329 | static void intr_phase_mismatch (struct Scsi_Host *host, struct NCR53c7x0_cmd |
@@ -4227,7 +4227,7 @@ restart: | |||
4227 | } | 4227 | } |
4228 | 4228 | ||
4229 | /* | 4229 | /* |
4230 | * Function : static irqreturn_t NCR53c7x0_intr (int irq, void *dev_id, struct pt_regs * regs) | 4230 | * Function : static irqreturn_t NCR53c7x0_intr (int irq, void *dev_id) |
4231 | * | 4231 | * |
4232 | * Purpose : handle NCR53c7x0 interrupts for all NCR devices sharing | 4232 | * Purpose : handle NCR53c7x0 interrupts for all NCR devices sharing |
4233 | * the same IRQ line. | 4233 | * the same IRQ line. |
@@ -4241,7 +4241,7 @@ restart: | |||
4241 | */ | 4241 | */ |
4242 | 4242 | ||
4243 | static irqreturn_t | 4243 | static irqreturn_t |
4244 | NCR53c7x0_intr (int irq, void *dev_id, struct pt_regs * regs) | 4244 | NCR53c7x0_intr (int irq, void *dev_id) |
4245 | { | 4245 | { |
4246 | NCR53c7x0_local_declare(); | 4246 | NCR53c7x0_local_declare(); |
4247 | struct Scsi_Host *host; /* Host we are looking at */ | 4247 | struct Scsi_Host *host; /* Host we are looking at */ |