diff options
| author | msaitoh <msaitoh@NetBSD.org> | 2022-01-25 11:17:39 +0000 |
|---|---|---|
| committer | msaitoh <msaitoh@NetBSD.org> | 2022-01-25 11:17:39 +0000 |
| commit | e4becf473b8d64a12bc1718feac8274d3ce70a11 (patch) | |
| tree | 0846f5905ac0ff3265bab5607dcd951c9f2c9496 /sys/dev/usb | |
| parent | 6c8512303c472db6977043f4f169e7abf5e6763e (diff) | |
Accept USB 3.2 in xhci_id_protocols().
Diffstat (limited to 'sys/dev/usb')
| -rw-r--r-- | sys/dev/usb/xhci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/xhci.c b/sys/dev/usb/xhci.c index c8d9ad7c025..3fe1bf70b4c 100644 --- a/sys/dev/usb/xhci.c +++ b/sys/dev/usb/xhci.c @@ -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, bus_size_t ecp) 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; |
