Module Name: src
Committed By: msaitoh
Date: Tue Jan 25 11:17:39 UTC 2022
Modified Files:
src/sys/dev/usb: xhci.c
Log Message:
Accept USB 3.2 in xhci_id_protocols().
To generate a diff of this commit:
cvs rdiff -u -r1.153 -r1.154 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.153 src/sys/dev/usb/xhci.c:1.154
--- src/sys/dev/usb/xhci.c:1.153 Sun Jan 16 20:25:36 2022
+++ src/sys/dev/usb/xhci.c Tue Jan 25 11:17:39 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: xhci.c,v 1.153 2022/01/16 20:25:36 riastradh Exp $ */
+/* $NetBSD: xhci.c,v 1.154 2022/01/25 11:17:39 msaitoh Exp $ */
/*
* Copyright (c) 2013 Jonathan A. Kollasch
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.153 2022/01/16 20:25:36 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.154 2022/01/25 11:17:39 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_usb.h"
@@ -1179,6 +1179,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;