summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2014-12-24 14:01:10 +0000
committerskrll <skrll@NetBSD.org>2014-12-24 14:01:10 +0000
commitf790482ccd570066247072a44a0f4e5e78c53f28 (patch)
tree19a4e92d36a9ba40549f42683f9c4ea29e83d30b /sys/dev
parentf0a8fccda71cbb275b525482961e0eeb751b84d8 (diff)
Typo in USBHIST_LOG message
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/ehci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c
index b265a125949..ba469823c8c 100644
--- a/sys/dev/usb/ehci.c
+++ b/sys/dev/usb/ehci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci.c,v 1.234 2014/09/22 08:13:02 skrll Exp $ */
+/* $NetBSD: ehci.c,v 1.235 2014/12/24 14:01:10 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 2014/09/22 08:13:02 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.235 2014/12/24 14:01:10 skrll Exp $");
#include "ohci.h"
#include "uhci.h"
@@ -4186,7 +4186,7 @@ ehci_device_isoc_start(usbd_xfer_handle xfer)
i = epipe->pipe.endpoint->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;
}