Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/usb xhci(4): Fix copypasto in resume error message.



details:   https://anonhg.NetBSD.org/src/rev/b0cdffe3512a
branches:  trunk
changeset: 359680:b0cdffe3512a
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sun Jan 16 20:25:18 2022 +0000

description:
xhci(4): Fix copypasto in resume error message.

diffstat:

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

diffs (27 lines):

diff -r e7942ae844fb -r b0cdffe3512a sys/dev/usb/xhci.c
--- a/sys/dev/usb/xhci.c        Sun Jan 16 20:24:34 2022 +0000
+++ b/sys/dev/usb/xhci.c        Sun Jan 16 20:25:18 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xhci.c,v 1.151 2021/12/21 09:51:22 skrll Exp $ */
+/*     $NetBSD: xhci.c,v 1.152 2022/01/16 20:25:18 riastradh Exp $     */
 
 /*
  * Copyright (c) 2013 Jonathan A. Kollasch
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.151 2021/12/21 09:51:22 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.152 2022/01/16 20:25:18 riastradh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -944,7 +944,7 @@
                usb_delay_ms(&sc->sc_bus, 1);
        }
        if (i >= XHCI_WAIT_RSS) {
-               device_printf(self, "suspend timeout, USBSTS.RSS\n");
+               device_printf(self, "resume timeout, USBSTS.RSS\n");
                goto out;
        }
 



Home | Main Index | Thread Index | Old Index