Module Name: src
Committed By: skrll
Date: Tue Dec 8 12:40:12 UTC 2015
Modified Files:
src/sys/dev/usb [nick-nhusb]: ehci.c
Log Message:
Wrap a long line
To generate a diff of this commit:
cvs rdiff -u -r1.234.2.67 -r1.234.2.68 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.2.67 src/sys/dev/usb/ehci.c:1.234.2.68
--- src/sys/dev/usb/ehci.c:1.234.2.67 Sat Nov 14 10:44:57 2015
+++ src/sys/dev/usb/ehci.c Tue Dec 8 12:40:12 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci.c,v 1.234.2.67 2015/11/14 10:44:57 skrll Exp $ */
+/* $NetBSD: ehci.c,v 1.234.2.68 2015/12/08 12:40:12 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.67 2015/11/14 10:44:57 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.234.2.68 2015/12/08 12:40:12 skrll Exp $");
#include "ohci.h"
#include "uhci.h"
@@ -3571,7 +3571,8 @@ ehci_device_ctrl_fini(struct usbd_xfer *
ehci_free_sqtd(sc, ex->ex_status);
ehci_free_sqtds(sc, ex);
if (ex->ex_nsqtd)
- kmem_free(ex->ex_sqtds, sizeof(ehci_soft_qtd_t *) * ex->ex_nsqtd);
+ kmem_free(ex->ex_sqtds,
+ sizeof(ehci_soft_qtd_t *) * ex->ex_nsqtd);
}
Static usbd_status