diff options
| author | skrll <skrll@NetBSD.org> | 2017-09-01 15:19:59 +0000 |
|---|---|---|
| committer | skrll <skrll@NetBSD.org> | 2017-09-01 15:19:59 +0000 |
| commit | 4849fbae27957419670f92f2f9ffbee012a27fa5 (patch) | |
| tree | 07553acb5a2307a69f7d8a99715d48d30fe6103c /sys/dev/usb | |
| parent | e30658bf7ec9ec81840830553cb7f6280bc3164e (diff) | |
Add a missing break that should have been included in revision 1.163.
Spotted by "sc dying" and reported on current-users
Diffstat (limited to 'sys/dev/usb')
| -rw-r--r-- | sys/dev/usb/usb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index 640b2fed3cc..071ea842b2c 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -1,4 +1,4 @@ -/* $NetBSD: usb.c,v 1.165 2017/01/19 16:05:00 skrll Exp $ */ +/* $NetBSD: usb.c,v 1.166 2017/09/01 15:19:59 skrll Exp $ */ /* * Copyright (c) 1998, 2002, 2008, 2012 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.165 2017/01/19 16:05:00 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.166 2017/09/01 15:19:59 skrll Exp $"); #ifdef _KERNEL_OPT #include "opt_usb.h" @@ -775,6 +775,7 @@ usbioctl(dev_t devt, u_long cmd, void *data, int flag, struct lwp *l) len = UGETW(ur->ucr_request.wLength); kmem_free(ptr, len); } + break; } case USB_DEVICEINFO: |
