Module Name:    src
Committed By:   skrll
Date:           Wed Dec 24 14:01:10 UTC 2014

Modified Files:
        src/sys/dev/usb: ehci.c

Log Message:
Typo in USBHIST_LOG message


To generate a diff of this commit:
cvs rdiff -u -r1.234 -r1.235 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.234 src/sys/dev/usb/ehci.c:1.235
--- src/sys/dev/usb/ehci.c:1.234	Mon Sep 22 08:13:02 2014
+++ src/sys/dev/usb/ehci.c	Wed Dec 24 14:01:10 2014
@@ -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 
 	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;
 	}
 

Reply via email to