mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Parens considered good.
This commit is contained in:
parent
2735483034
commit
253b72896c
1 changed files with 1 additions and 1 deletions
|
|
@ -960,7 +960,7 @@ pcic_reset(void *chan)
|
|||
printf("int is %x stat is %x\n",
|
||||
sp->getb(sp, PCIC_INT_GEN),
|
||||
sp->getb(sp, PCIC_STATUS));
|
||||
if (!sp->getb(sp, PCIC_STATUS) & PCIC_READY) {
|
||||
if ((sp->getb(sp, PCIC_STATUS) & PCIC_READY) == 0) {
|
||||
timeout(pcic_reset, (void *)slt, hz/10);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue