diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 1999-11-11 15:57:41 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 1999-11-11 15:57:41 +0000 |
commit | 575737cd6be3ba9e1edd291924224ec186d24beb (patch) | |
tree | 7264d12d9d1fbd4c8ac97be7446e5b9d3149434b | |
parent | 165618805e42fc37ca9d4bf92a9b474c870145b1 (diff) |
Delay USB device attachment to prevent lost interrupts when probing uaudio.
-rw-r--r-- | sys/dev/usb/usb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index 3a9905ebe91..e23f43d46c0 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: usb.c,v 1.6 1999/11/07 21:30:19 fgsch Exp $ */ +/* $OpenBSD: usb.c,v 1.7 1999/11/11 15:57:40 ho Exp $ */ /* $NetBSD: usb.c,v 1.28 1999/10/13 08:10:57 augustss Exp $ */ /* @@ -194,7 +194,7 @@ USB_ATTACH(usb) USB_ATTACH_ERROR_RETURN; } sc->sc_bus->root_hub = dev; -#if 1 +#if 0 /* * Turning this code off will delay attachment of USB devices * until the USB event thread is running, which means that |