diff options
author | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2005-04-21 07:51:47 +0000 |
---|---|---|
committer | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2005-04-21 07:51:47 +0000 |
commit | 097f01e2a988cd535ed143f28f388375de728dec (patch) | |
tree | 8748d446ee92d5b72df2346dfe35dbf353e67633 | |
parent | 289be5541394173fa72c73582bd5c6231e86109a (diff) |
Fix inverted logic when testing for successful SMM handover.
-rw-r--r-- | sys/dev/usb/ohci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 09898374de7..98d7808035d 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ohci.c,v 1.58 2005/03/30 14:12:35 dlg Exp $ */ +/* $OpenBSD: ohci.c,v 1.59 2005/04/21 07:51:46 pascoe Exp $ */ /* $NetBSD: ohci.c,v 1.139 2003/02/22 05:24:16 tsutsui Exp $ */ /* $FreeBSD: src/sys/dev/usb/ohci.c,v 1.22 1999/11/17 22:33:40 n_hibma Exp $ */ @@ -759,7 +759,7 @@ ohci_init(ohci_softc_t *sc) usb_delay_ms(&sc->sc_bus, 1); ctl = OREAD4(sc, OHCI_CONTROL); } - if ((ctl & OHCI_IR) == 0) { + if (ctl & OHCI_IR) { printf("%s: SMM does not respond, resetting\n", USBDEVNAME(sc->sc_bus.bdev)); OWRITE4(sc, OHCI_CONTROL, OHCI_HCFS_RESET); |