Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 77048
b: refs/heads/master
c: baa9aac
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Garzik authored and James Bottomley committed Jan 12, 2008
1 parent 0834609 commit d2de7dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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: fc9b5118823e84b4ed0acddd99c1e453298e103d
refs/heads/master: baa9aac6a15a1990e9d2d7a5648f53dfccc440ad
7 changes: 4 additions & 3 deletions trunk/drivers/scsi/NCR5380.c
Original file line number Diff line number Diff line change
Expand Up @@ -1157,16 +1157,17 @@ static void NCR5380_main(struct work_struct *work)
* Locks: takes the needed instance locks
*/

static irqreturn_t NCR5380_intr(int irq, void *dev_id)
static irqreturn_t NCR5380_intr(int dummy, void *dev_id)
{
NCR5380_local_declare();
struct Scsi_Host *instance = (struct Scsi_Host *)dev_id;
struct Scsi_Host *instance = dev_id;
struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
int done;
unsigned char basr;
unsigned long flags;

dprintk(NDEBUG_INTR, ("scsi : NCR5380 irq %d triggered\n", irq));
dprintk(NDEBUG_INTR, ("scsi : NCR5380 irq %d triggered\n",
instance->irq));

do {
done = 1;
Expand Down

0 comments on commit d2de7dd

Please sign in to comment.