Module Name:    src
Committed By:   skrll
Date:           Thu Jul  2 09:05:06 UTC 2015

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

Log Message:
Somehow the ; disappeared from the previouis commit


To generate a diff of this commit:
cvs rdiff -u -r1.240 -r1.241 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.240 src/sys/dev/usb/ehci.c:1.241
--- src/sys/dev/usb/ehci.c:1.240	Thu Jul  2 08:35:44 2015
+++ src/sys/dev/usb/ehci.c	Thu Jul  2 09:05:06 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: ehci.c,v 1.240 2015/07/02 08:35:44 skrll Exp $ */
+/*	$NetBSD: ehci.c,v 1.241 2015/07/02 09:05:06 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.240 2015/07/02 08:35:44 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.241 2015/07/02 09:05:06 skrll Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -519,7 +519,7 @@ ehci_init(ehci_softc_t *sc)
 			    EHCI_LINK_QH);
 		}
 		sqh->qh.qh_endp = htole32(EHCI_QH_SET_EPS(EHCI_QH_SPEED_HIGH));
-		sqh->qh.qh_endphub = htole32(EHCI_QH_SET_MULT(1))
+		sqh->qh.qh_endphub = htole32(EHCI_QH_SET_MULT(1));
 		sqh->qh.qh_curqtd = EHCI_NULL;
 		sqh->qh.qh_qtd.qtd_next = EHCI_NULL;
 		sqh->qh.qh_qtd.qtd_altnext = EHCI_NULL;

Reply via email to