1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-26 11:47:31 +00:00

Remove an extra '!' found by clang 3.8.

This commit is contained in:
Andrew Turner 2016-01-21 16:42:52 +00:00
parent 5edd0d3a4d
commit 026ffbb8ed
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=294510

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);