Module Name: src
Committed By: jakllsch
Date: Tue Dec 13 21:11:01 UTC 2022
Modified Files:
src/sys/dev/usb: ehci.c
Log Message:
Add missing whitespace in error message.
To generate a diff of this commit:
cvs rdiff -u -r1.311 -r1.312 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.311 src/sys/dev/usb/ehci.c:1.312
--- src/sys/dev/usb/ehci.c:1.311 Wed Apr 6 22:01:45 2022
+++ src/sys/dev/usb/ehci.c Tue Dec 13 21:11:00 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci.c,v 1.311 2022/04/06 22:01:45 mlelstv Exp $ */
+/* $NetBSD: ehci.c,v 1.312 2022/12/13 21:11:00 jakllsch Exp $ */
/*
* Copyright (c) 2004-2012,2016,2020 The NetBSD Foundation, Inc.
@@ -54,7 +54,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.311 2022/04/06 22:01:45 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.312 2022/12/13 21:11:00 jakllsch Exp $");
#include "ohci.h"
#include "uhci.h"
@@ -4364,7 +4364,7 @@ ehci_device_fs_isoc_transfer(struct usbd
if (epipe->pipe.up_endpoint->ue_edesc->bInterval *
xfer->ux_nframes >= sc->sc_flsize - 4) {
printf("ehci: isoc descriptor requested that spans the entire"
- "frametable, too many frames\n");
+ " frametable, too many frames\n");
return USBD_INVAL;
}