diff options
author | Andrew R. Baker <andrewb@uab.edu> | 1999-08-02 17:34:28 +0000 |
---|---|---|
committer | Andrew R. Baker <andrewb@uab.edu> | 1999-08-02 17:34:28 +0000 |
commit | a43cafc0fcbd2570fd6a54333f3cbc5726c89f46 (patch) | |
tree | 276be95ef034b7664882c093fef0f221405acfc5 /drivers/scsi/wd33c93.c | |
parent | 7a3e9b821b86407ef9e92a97312a8c27bbe37334 (diff) |
Support for the 2nd SCSI controller on the Indigo2.
Diffstat (limited to 'drivers/scsi/wd33c93.c')
-rw-r--r-- | drivers/scsi/wd33c93.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/wd33c93.c b/drivers/scsi/wd33c93.c index 1e826cac5..2f75c1bf3 100644 --- a/drivers/scsi/wd33c93.c +++ b/drivers/scsi/wd33c93.c @@ -1362,7 +1362,7 @@ uchar sr; #ifdef CONFIG_SGI { int busycount = 0; -extern void sgiwd93_reset(void); +extern void sgiwd93_reset(uchar*); /* wait 'til the chip gets some time for us */ while (READ_AUX_STAT() & ASR_BSY && busycount++ < 100) @@ -1376,7 +1376,7 @@ extern void sgiwd93_reset(void); */ /* still busy ? */ if (READ_AUX_STAT() & ASR_BSY) - sgiwd93_reset(); /* yeah, give it the hard one */ + sgiwd93_reset(instance->base); /* yeah, give it the hard one */ } #endif |