Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src/sys/dev/usb Pull up following revision(s) (requested by s...



details:   https://anonhg.NetBSD.org/src/rev/851abfec0969
branches:  netbsd-7
changeset: 800341:851abfec0969
user:      snj <snj%NetBSD.org@localhost>
date:      Sun Oct 01 17:12:41 2017 +0000

description:
Pull up following revision(s) (requested by skrll in ticket #1502):
        sys/dev/usb/usb.c: revision 1.166
Add a missing break that should have been included in revision 1.163.
Spotted by "sc dying" and reported on current-users

diffstat:

 sys/dev/usb/usb.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 82020e7e56a9 -r 851abfec0969 sys/dev/usb/usb.c
--- a/sys/dev/usb/usb.c Sun Oct 01 17:07:04 2017 +0000
+++ b/sys/dev/usb/usb.c Sun Oct 01 17:12:41 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: usb.c,v 1.154.2.2 2017/04/05 19:54:20 snj Exp $        */
+/*     $NetBSD: usb.c,v 1.154.2.3 2017/10/01 17:12:41 snj 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.154.2.2 2017/04/05 19:54:20 snj Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.154.2.3 2017/10/01 17:12:41 snj Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -775,6 +775,7 @@
                        len = UGETW(ur->ucr_request.wLength);
                        kmem_free(ptr, len);
                }
+               break;
        }
 
        case USB_DEVICEINFO:



Home | Main Index | Thread Index | Old Index