Module Name: src
Committed By: christos
Date: Sat Dec 9 00:54:31 UTC 2017
Modified Files:
src/sys/dev/usb: xhci.c
Log Message:
adjust for hexdump signature
To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 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.79 src/sys/dev/usb/xhci.c:1.80
--- src/sys/dev/usb/xhci.c:1.79 Fri Dec 8 16:51:07 2017
+++ src/sys/dev/usb/xhci.c Fri Dec 8 19:54:31 2017
@@ -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 @@ __KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.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;