Module Name:    src
Committed By:   skrll
Date:           Sun Mar 15 15:00:15 UTC 2020

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

Log Message:
Fix a comment


To generate a diff of this commit:
cvs rdiff -u -r1.298 -r1.299 src/sys/dev/usb/uhci.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/uhci.c
diff -u src/sys/dev/usb/uhci.c:1.298 src/sys/dev/usb/uhci.c:1.299
--- src/sys/dev/usb/uhci.c:1.298	Sun Mar 15 14:58:54 2020
+++ src/sys/dev/usb/uhci.c	Sun Mar 15 15:00:14 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: uhci.c,v 1.298 2020/03/15 14:58:54 skrll Exp $	*/
+/*	$NetBSD: uhci.c,v 1.299 2020/03/15 15:00:14 skrll Exp $	*/
 
 /*
  * Copyright (c) 1998, 2004, 2011, 2012 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.298 2020/03/15 14:58:54 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.299 2020/03/15 15:00:14 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -462,7 +462,7 @@ uhci_init(uhci_softc_t *sc)
 	sc->sc_pframes = KERNADDR(&sc->sc_dma, 0);
 	/* set frame number to 0 */
 	UWRITE2(sc, UHCI_FRNUM, 0);
-	/* set frame list*/
+	/* set frame list */
 	UWRITE4(sc, UHCI_FLBASEADDR, DMAADDR(&sc->sc_dma, 0));
 
 	/* Initialise mutex early for uhci_alloc_* */

Reply via email to