Module Name:    src
Committed By:   prlw1
Date:           Thu Jul 16 15:01:04 UTC 2015

Modified Files:
        src/sys/dev/pckbport: pckbd.c

Log Message:
Disambiguate debug message.


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/pckbport/pckbd.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/pckbport/pckbd.c
diff -u src/sys/dev/pckbport/pckbd.c:1.31 src/sys/dev/pckbport/pckbd.c:1.32
--- src/sys/dev/pckbport/pckbd.c:1.31	Sun Sep 15 09:24:05 2013
+++ src/sys/dev/pckbport/pckbd.c	Thu Jul 16 15:01:04 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: pckbd.c,v 1.31 2013/09/15 09:24:05 martin Exp $ */
+/* $NetBSD: pckbd.c,v 1.32 2015/07/16 15:01:04 prlw1 Exp $ */
 
 /*-
  * Copyright (c) 1998, 2009 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pckbd.c,v 1.31 2013/09/15 09:24:05 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pckbd.c,v 1.32 2015/07/16 15:01:04 prlw1 Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -288,10 +288,9 @@ pckbd_resume(device_t dv, const pmf_qual
 	res = pckbport_poll_cmd(sc->id->t_kbctag,
 	    sc->id->t_kbcslot, cmd, 1, 1, resp, 1);
 	if (res)
-		aprint_debug("pckbdprobe: reset error %d\n", res);
+		aprint_debug("%s: reset error %d\n", __func__, res);
 	if (resp[0] != KBR_RSTDONE)
-		printf("pckbdprobe: reset response 0x%x\n",
-		    resp[0]);
+		printf("%s: reset response 0x%x\n", __func__, resp[0]);
 
 	pckbport_flush(sc->id->t_kbctag, sc->id->t_kbcslot);
 

Reply via email to