View | Details | Raw Unified | Return to bug 263928
Collapse All | Expand All

(-)b/sys/dev/sdhci/sdhci_xenon.c (-2 / +1 lines)
Lines 183-189 sdhci_xenon_get_ro(device_t bus, device_t dev) Link Here
183
	struct sdhci_xenon_softc *sc = device_get_softc(bus);
183
	struct sdhci_xenon_softc *sc = device_get_softc(bus);
184
184
185
	return (sdhci_generic_get_ro(bus, dev) ^
185
	return (sdhci_generic_get_ro(bus, dev) ^
186
	    (sc->mmc_helper.props & MMC_PROP_WP_INVERTED));
186
	    !!(sc->mmc_helper.props & MMC_PROP_WP_INVERTED));
187
}
187
}
188
188
189
static bool
189
static bool
190
- 

Return to bug 263928