Module Name:    src
Committed By:   mrg
Date:           Fri Aug 23 04:34:01 UTC 2019

Modified Files:
        src/sys/dev/usb: xhci.c

Log Message:
convert a debug message to an error message.  will help more quickly
identify next time xhci version changes.


To generate a diff of this commit:
cvs rdiff -u -r1.109 -r1.110 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.109 src/sys/dev/usb/xhci.c:1.110
--- src/sys/dev/usb/xhci.c:1.109	Wed Aug 21 06:19:43 2019
+++ src/sys/dev/usb/xhci.c	Fri Aug 23 04:34:01 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: xhci.c,v 1.109 2019/08/21 06:19:43 mrg Exp $	*/
+/*	$NetBSD: xhci.c,v 1.110 2019/08/23 04:34:01 mrg Exp $	*/
 
 /*
  * Copyright (c) 2013 Jonathan A. Kollasch
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.109 2019/08/21 06:19:43 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.110 2019/08/23 04:34:01 mrg Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -783,7 +783,7 @@ xhci_id_protocols(struct xhci_softc *sc,
 		    major == 3 ? "ss" : "hs", cpo, cpo + cpc -1);
 		break;
 	default:
-		aprint_debug_dev(sc->sc_dev, " unknown major/minor (%d/%d)\n",
+		aprint_error_dev(sc->sc_dev, " unknown major/minor (%d/%d)\n",
 		    major, minor);
 		return;
 	}

Reply via email to