summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/dev/usb/ohci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index 131e306..70fea2d 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -1578,7 +1578,7 @@ ohci_hash_find_td(sc, a)
/* if these are present they should be masked out at an earlier
* stage.
*/
- KASSERT((a&LE(OHCI_TAILMASK)) == 0, ("%s: 0x%b has lower bits set\n",
+ KASSERT((a&~OHCI_TAILMASK) == 0, ("%s: 0x%b has lower bits set\n",
USBDEVNAME(sc->sc_bus.bdev),
(int) a, "\20\1HALT\2TOGGLE"));
OpenPOWER on IntegriCloud