aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/scsi/NCR5380.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/NCR5380.c b/drivers/scsi/NCR5380.c
index bb3cb3360541..18359f6372f7 100644
--- a/drivers/scsi/NCR5380.c
+++ b/drivers/scsi/NCR5380.c
@@ -347,7 +347,7 @@ static int NCR5380_poll_politely(struct Scsi_Host *instance, int reg, int bit, i
347 if((r & bit) == val) 347 if((r & bit) == val)
348 return 0; 348 return 0;
349 if(!in_interrupt()) 349 if(!in_interrupt())
350 yield(); 350 cond_resched();
351 else 351 else
352 cpu_relax(); 352 cpu_relax();
353 } 353 }