summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/uhci.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index 6f481f04736..afb3037174d 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uhci.c,v 1.120 2014/05/19 06:54:34 jsg Exp $ */
+/* $OpenBSD: uhci.c,v 1.121 2014/05/25 09:59:12 mpi Exp $ */
/* $NetBSD: uhci.c,v 1.172 2003/02/23 04:19:26 simonb Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $ */
@@ -565,6 +565,9 @@ uhci_activate(struct device *self, int act)
rv = config_activate_children(self, act);
sc->sc_bus.dying = 1;
break;
+ default:
+ rv = config_activate_children(self, act);
+ break;
}
return (rv);
}