diff options
author | joe <joe@FreeBSD.org> | 2003-07-14 18:52:12 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2003-07-14 18:52:12 +0000 |
commit | 52e7f8285c0d251dfa802b232df0610c341f0126 (patch) | |
tree | d086fe07cc23bdbddcdeba80520e629f102018ef /sys/dev/usb | |
parent | 5bd5d0df9ab1c92e29fed6fa3fc85cfdb10aae9d (diff) | |
download | FreeBSD-src-52e7f8285c0d251dfa802b232df0610c341f0126.zip FreeBSD-src-52e7f8285c0d251dfa802b232df0610c341f0126.tar.gz |
MFNetBSD: revision 1.172
date: 2003/02/23 04:19:26; author: simonb;
Remove unreachable break after return.
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/uhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index 88ea250..c3fa26a 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -11,6 +11,7 @@ * $NetBSD: uhci.c,v 1.168 2003/02/08 03:32:51 ichiro Exp $ * $NetBSD: uhci.c,v 1.169 2003/02/16 23:15:28 augustss Exp $ * $NetBSD: uhci.c,v 1.170 2003/02/19 01:35:04 augustss Exp $ + * $NetBSD: uhci.c,v 1.172 2003/02/23 04:19:26 simonb Exp $ */ @@ -564,7 +565,6 @@ uhci_activate(device_ptr_t self, enum devact act) switch (act) { case DVACT_ACTIVATE: return (EOPNOTSUPP); - break; case DVACT_DEACTIVATE: if (sc->sc_child != NULL) |