[SCSI] hpsa: fix bad comparison
'!' has higher precedence than '&'. CFGTBL_ChangeReq is 0x1 so the original code is equivelent to if (!doorbell_value) {... Signed-off-by: Dan Carpenter <error27@gmail.com> Acked-by: Stephen M. Cameron <scameron@beardog.cce.hp.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
ba95e2ac6b
commit
382be668c5
|
@ -3614,7 +3614,7 @@ static void __devinit hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
|
|||
spin_lock_irqsave(&h->lock, flags);
|
||||
doorbell_value = readl(h->vaddr + SA5_DOORBELL);
|
||||
spin_unlock_irqrestore(&h->lock, flags);
|
||||
if (!doorbell_value & CFGTBL_ChangeReq)
|
||||
if (!(doorbell_value & CFGTBL_ChangeReq))
|
||||
break;
|
||||
/* delay and try again */
|
||||
usleep_range(10000, 20000);
|
||||
|
|
Loading…
Reference in New Issue