Module Name: src Committed By: martin Date: Fri Sep 16 18:34:20 UTC 2022
Modified Files: src/sys/dev/usb [netbsd-8]: xhci.c Log Message: Pull up following revision(s) (requested by msaitoh in ticket #1765): sys/dev/usb/xhci.c: revision 1.154 Accept USB 3.2 in xhci_id_protocols(). To generate a diff of this commit: cvs rdiff -u -r1.72.2.12 -r1.72.2.13 src/sys/dev/usb/xhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/usb/xhci.c diff -u src/sys/dev/usb/xhci.c:1.72.2.12 src/sys/dev/usb/xhci.c:1.72.2.13 --- src/sys/dev/usb/xhci.c:1.72.2.12 Sat Nov 16 16:30:09 2019 +++ src/sys/dev/usb/xhci.c Fri Sep 16 18:34:20 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: xhci.c,v 1.72.2.12 2019/11/16 16:30:09 martin Exp $ */ +/* $NetBSD: xhci.c,v 1.72.2.13 2022/09/16 18:34:20 martin Exp $ */ /* * Copyright (c) 2013 Jonathan A. Kollasch @@ -34,7 +34,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.72.2.12 2019/11/16 16:30:09 martin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.72.2.13 2022/09/16 18:34:20 martin Exp $"); #ifdef _KERNEL_OPT #include "opt_usb.h" @@ -781,6 +781,7 @@ xhci_id_protocols(struct xhci_softc *sc, case 0x0300: case 0x0301: case 0x0310: + case 0x0320: aprint_debug_dev(sc->sc_dev, " %s ports %d - %d\n", major == 3 ? "ss" : "hs", cpo, cpo + cpc -1); break;