Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/usb adjust for hexdump signature



details:   https://anonhg.NetBSD.org/src/rev/5379af2faf9d
branches:  trunk
changeset: 358042:5379af2faf9d
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Dec 09 00:54:31 2017 +0000

description:
adjust for hexdump signature

diffstat:

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

diffs (27 lines):

diff -r 0f1c9004256b -r 5379af2faf9d sys/dev/usb/xhci.c
--- a/sys/dev/usb/xhci.c        Sat Dec 09 00:53:55 2017 +0000
+++ b/sys/dev/usb/xhci.c        Sat Dec 09 00:54:31 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xhci.c,v 1.79 2017/12/08 21:51:07 christos Exp $       */
+/*     $NetBSD: xhci.c,v 1.80 2017/12/09 00:54:31 christos Exp $       */
 
 /*
  * Copyright (c) 2013 Jonathan A. Kollasch
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.79 2017/12/08 21:51:07 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.80 2017/12/09 00:54:31 christos Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -76,7 +76,7 @@
 #define HEXDUMP(a, b, c) \
     do { \
            if (xhcidebug > 0) \
-                   hexdump(a, b, c); \
+                   hexdump(printf, a, b, c); \
     } while (/*CONSTCOND*/0)
 static int xhcidebug = 0;
 



Home | Main Index | Thread Index | Old Index