Module Name: src
Committed By: skrll
Date: Sat Sep 13 18:35:57 UTC 2014
Modified Files:
src/sys/dev/usb: ehci.c
Log Message:
Fix reversed argument to USBHIST_LOG
To generate a diff of this commit:
cvs rdiff -u -r1.230 -r1.231 src/sys/dev/usb/ehci.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/ehci.c
diff -u src/sys/dev/usb/ehci.c:1.230 src/sys/dev/usb/ehci.c:1.231
--- src/sys/dev/usb/ehci.c:1.230 Sat Sep 13 08:15:43 2014
+++ src/sys/dev/usb/ehci.c Sat Sep 13 18:35:57 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci.c,v 1.230 2014/09/13 08:15:43 skrll Exp $ */
+/* $NetBSD: ehci.c,v 1.231 2014/09/13 18:35:57 skrll Exp $ */
/*
* Copyright (c) 2004-2012 The NetBSD Foundation, Inc.
@@ -53,7 +53,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.230 2014/09/13 08:15:43 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.231 2014/09/13 18:35:57 skrll Exp $");
#include "ohci.h"
#include "uhci.h"
@@ -1616,7 +1616,7 @@ ehci_dump_qtd(ehci_qtd_t *qtd)
USBHIST_LOGN(ehcidebug, 10,
" next = 0x%08x altnext = 0x%08x status = 0x%08x",
- qtd->qtd_altnext, qtd->qtd_next, s, 0);
+ qtd->qtd_next, qtd->qtd_altnext, s, 0);
USBHIST_LOGN(ehcidebug, 10,
" toggle = %d ioc = %d bytes = %#x "
"c_page = %#x", EHCI_QTD_GET_TOGGLE(s), EHCI_QTD_GET_IOC(s),