Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/nick-nhusb]: src/sys/dev/usb Typo in USBHIST_LOG message.
details: https://anonhg.NetBSD.org/src/rev/1ac9c7f1bad9
branches: nick-nhusb
changeset: 334092:1ac9c7f1bad9
user: skrll <skrll%NetBSD.org@localhost>
date: Wed Dec 24 14:12:16 2014 +0000
description:
Typo in USBHIST_LOG message.
diffstat:
sys/dev/usb/ehci.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r 831fa3d7380e -r 1ac9c7f1bad9 sys/dev/usb/ehci.c
--- a/sys/dev/usb/ehci.c Wed Dec 24 14:11:05 2014 +0000
+++ b/sys/dev/usb/ehci.c Wed Dec 24 14:12:16 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci.c,v 1.234.2.20 2014/12/24 14:11:05 skrll Exp $ */
+/* $NetBSD: ehci.c,v 1.234.2.21 2014/12/24 14:12:16 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.234.2.20 2014/12/24 14:11:05 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.234.2.21 2014/12/24 14:12:16 skrll Exp $");
#include "ohci.h"
#include "uhci.h"
@@ -4139,7 +4139,7 @@
i = epipe->pipe.up_endpoint->ue_edesc->bInterval;
if (i > 16 || i == 0) {
/* Spec page 271 says intervals > 16 are invalid */
- USBHIST_LOG(ehcidebug, "bInverval %d invalid\n", 0, 0, 0, 0);
+ USBHIST_LOG(ehcidebug, "bInterval %d invalid\n", 0, 0, 0, 0);
return USBD_INVAL;
}
@@ -4462,7 +4462,7 @@
i = epipe->pipe.up_endpoint->ue_edesc->bInterval;
if (i > 16 || i == 0) {
/* Spec page 271 says intervals > 16 are invalid */
- USBHIST_LOG(ehcidebug, "bInvertal %d invalid", i, 0, 0, 0);
+ USBHIST_LOG(ehcidebug, "bInterval %d invalid", i, 0, 0, 0);
return USBD_INVAL;
}
Home |
Main Index |
Thread Index |
Old Index