Remove an extra '!' found by clang 3.8.

This commit is contained in:
andrew 2016-01-21 16:42:52 +00:00
parent 9695459665
commit 1652ce7837

View File

@ -922,7 +922,7 @@ static inline void
pcib_write_irq_mask(struct mv_pcib_softc *sc, uint32_t mask)
{
if (!sc->sc_type != MV_TYPE_PCI)
if (sc->sc_type != MV_TYPE_PCI)
return;
bus_space_write_4(sc->sc_bst, sc->sc_bsh, PCIE_REG_IRQ_MASK, mask);