diff options
author | Chris Cappuccio <chris@cvs.openbsd.org> | 1999-10-26 23:47:16 +0000 |
---|---|---|
committer | Chris Cappuccio <chris@cvs.openbsd.org> | 1999-10-26 23:47:16 +0000 |
commit | 06007bab37f86c536d988618cabb43b84d678880 (patch) | |
tree | 8c73bb8de0574ca57303f6d7b8efda3ceb2ef8c9 /sys/dev/pci/if_lmc_common.c | |
parent | 0ec85252a9ebb583d953ccaef52d2704e45ff2e9 (diff) |
Support LMC1200
Based on LMC's Linux code
Diffstat (limited to 'sys/dev/pci/if_lmc_common.c')
-rw-r--r-- | sys/dev/pci/if_lmc_common.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pci/if_lmc_common.c b/sys/dev/pci/if_lmc_common.c index a005df8830c..af526451bd1 100644 --- a/sys/dev/pci/if_lmc_common.c +++ b/sys/dev/pci/if_lmc_common.c @@ -238,8 +238,7 @@ lmc_reset(lmc_softc_t * const sc) /* * busy wait for the chip to reset */ - while ((LMC_CSR_READ(sc, csr_gp) & LMC_GEP_DP) == 0) - ; + while ((LMC_CSR_READ(sc, csr_gp) & LMC_GEP_DP) == 0); /* * Call media specific init routine |