Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/usb Fix reversed argument to USBHIST_LOG
details: https://anonhg.NetBSD.org/src/rev/0f32b50d9639
branches: trunk
changeset: 332279:0f32b50d9639
user: skrll <skrll%NetBSD.org@localhost>
date: Sat Sep 13 18:35:57 2014 +0000
description:
Fix reversed argument to USBHIST_LOG
diffstat:
sys/dev/usb/ehci.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 68c684cdcd51 -r 0f32b50d9639 sys/dev/usb/ehci.c
--- a/sys/dev/usb/ehci.c Sat Sep 13 18:09:50 2014 +0000
+++ b/sys/dev/usb/ehci.c Sat Sep 13 18:35:57 2014 +0000
@@ -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 @@
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),
Home |
Main Index |
Thread Index |
Old Index