diff options
author | Keith M Wesolowski <wesolows@foobazco.org> | 2001-03-26 00:38:20 +0000 |
---|---|---|
committer | Keith M Wesolowski <wesolows@foobazco.org> | 2001-03-26 00:38:20 +0000 |
commit | 95e509f61d8560e71031a496f5448212089e1f78 (patch) | |
tree | 557844b10279d44321f6cac2def2974f5057ee2e /drivers/scsi/wd33c93.c | |
parent | 86379fd2f83d9c135ede0058ab6c4adf60625610 (diff) |
Get Indy64 booting a little farther. This also fixes a generic 64-bitness
bug in some of the r4k cache routines.
Diffstat (limited to 'drivers/scsi/wd33c93.c')
-rw-r--r-- | drivers/scsi/wd33c93.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/wd33c93.c b/drivers/scsi/wd33c93.c index bed2b06a2..7984f9254 100644 --- a/drivers/scsi/wd33c93.c +++ b/drivers/scsi/wd33c93.c @@ -1422,9 +1422,8 @@ uchar sr; { int busycount = 0; extern void sgiwd93_reset(unsigned long); - /* wait 'til the chip gets some time for us */ - while (READ_AUX_STAT() & ASR_BSY && busycount++ < 100) + while ((READ_AUX_STAT() & ASR_BSY) && busycount++ < 100) udelay (10); /* * there are scsi devices out there, which manage to lock up |