Module Name:    src
Committed By:   andvar
Date:           Sun Mar 20 19:26:27 UTC 2022

Modified Files:
        src/sys/dev/raidframe: rf_aselect.c
        src/sys/dev/usb: umass.c

Log Message:
s/initialiase/initialise/ in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/raidframe/rf_aselect.c
cvs rdiff -u -r1.187 -r1.188 src/sys/dev/usb/umass.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/raidframe/rf_aselect.c
diff -u src/sys/dev/raidframe/rf_aselect.c:1.30 src/sys/dev/raidframe/rf_aselect.c:1.31
--- src/sys/dev/raidframe/rf_aselect.c:1.30	Fri Jul 23 00:54:45 2021
+++ src/sys/dev/raidframe/rf_aselect.c	Sun Mar 20 19:26:27 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: rf_aselect.c,v 1.30 2021/07/23 00:54:45 oster Exp $	*/
+/*	$NetBSD: rf_aselect.c,v 1.31 2022/03/20 19:26:27 andvar Exp $	*/
 /*
  * Copyright (c) 1995 Carnegie-Mellon University.
  * All rights reserved.
@@ -33,7 +33,7 @@
  *****************************************************************************/
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_aselect.c,v 1.30 2021/07/23 00:54:45 oster Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_aselect.c,v 1.31 2022/03/20 19:26:27 andvar Exp $");
 
 #include <dev/raidframe/raidframevar.h>
 
@@ -51,7 +51,7 @@ int     rf_SelectAlgorithm(RF_RaidAccess
 
 /******************************************************************************
  *
- * Create and Initialiaze a dag header and termination node
+ * Create and Initialize a dag header and termination node
  *
  *****************************************************************************/
 static void

Index: src/sys/dev/usb/umass.c
diff -u src/sys/dev/usb/umass.c:1.187 src/sys/dev/usb/umass.c:1.188
--- src/sys/dev/usb/umass.c:1.187	Fri Dec 31 14:24:16 2021
+++ src/sys/dev/usb/umass.c	Sun Mar 20 19:26:27 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: umass.c,v 1.187 2021/12/31 14:24:16 riastradh Exp $	*/
+/*	$NetBSD: umass.c,v 1.188 2022/03/20 19:26:27 andvar Exp $	*/
 
 /*
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -124,7 +124,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.187 2021/12/31 14:24:16 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.188 2022/03/20 19:26:27 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -982,7 +982,7 @@ umass_setup_transfer(struct umass_softc 
 	if (sc->sc_dying)
 		return USBD_IOERROR;
 
-	/* Initialiase a USB transfer and then schedule it */
+	/* Initialise a USB transfer and then schedule it */
 
 	usbd_setup_xfer(xfer, sc, buffer, buflen, flags, sc->timeout,
 	    sc->sc_methods->wire_state);
@@ -1010,7 +1010,7 @@ umass_setup_ctrl_transfer(struct umass_s
 	if (sc->sc_dying)
 		return USBD_IOERROR;
 
-	/* Initialiase a USB control transfer and then schedule it */
+	/* Initialise a USB control transfer and then schedule it */
 
 	usbd_setup_default_xfer(xfer, sc->sc_udev, (void *) sc, sc->timeout,
 		req, buffer, buflen, flags, sc->sc_methods->wire_state);

Reply via email to