Module Name:    src
Committed By:   skrll
Date:           Wed Jan 11 07:16:48 UTC 2017

Modified Files:
        src/sys/dev/ic: aic6360.c mb89352.c ncr5380sbc.c ncr53c9x.c sunscpal.c
            wd33c93.c

Log Message:
adatper -> adapter


To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 src/sys/dev/ic/aic6360.c
cvs rdiff -u -r1.54 -r1.55 src/sys/dev/ic/mb89352.c
cvs rdiff -u -r1.66 -r1.67 src/sys/dev/ic/ncr5380sbc.c
cvs rdiff -u -r1.146 -r1.147 src/sys/dev/ic/ncr53c9x.c
cvs rdiff -u -r1.26 -r1.27 src/sys/dev/ic/sunscpal.c
cvs rdiff -u -r1.25 -r1.26 src/sys/dev/ic/wd33c93.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/ic/aic6360.c
diff -u src/sys/dev/ic/aic6360.c:1.99 src/sys/dev/ic/aic6360.c:1.100
--- src/sys/dev/ic/aic6360.c:1.99	Mon Nov 23 02:13:46 2009
+++ src/sys/dev/ic/aic6360.c	Wed Jan 11 07:16:48 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: aic6360.c,v 1.99 2009/11/23 02:13:46 rmind Exp $	*/
+/*	$NetBSD: aic6360.c,v 1.100 2017/01/11 07:16:48 skrll Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995, 1996 Charles M. Hannum.  All rights reserved.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic6360.c,v 1.99 2009/11/23 02:13:46 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic6360.c,v 1.100 2017/01/11 07:16:48 skrll Exp $");
 
 #include "opt_ddb.h"
 
@@ -279,7 +279,7 @@ aicattach(struct aic_softc *sc)
 
 	/*
 	 * Add reference to adapter so that we drop the reference after
-	 * config_found() to make sure the adatper is disabled.
+	 * config_found() to make sure the adapter is disabled.
 	 */
 	if (scsipi_adapter_addref(adapt) != 0) {
 		aprint_error_dev(sc->sc_dev, "unable to enable controller\n");

Index: src/sys/dev/ic/mb89352.c
diff -u src/sys/dev/ic/mb89352.c:1.54 src/sys/dev/ic/mb89352.c:1.55
--- src/sys/dev/ic/mb89352.c:1.54	Mon Nov  4 16:54:56 2013
+++ src/sys/dev/ic/mb89352.c	Wed Jan 11 07:16:48 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: mb89352.c,v 1.54 2013/11/04 16:54:56 christos Exp $	*/
+/*	$NetBSD: mb89352.c,v 1.55 2017/01/11 07:16:48 skrll Exp $	*/
 /*	NecBSD: mb89352.c,v 1.4 1998/03/14 07:31:20 kmatsuda Exp	*/
 
 /*-
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mb89352.c,v 1.54 2013/11/04 16:54:56 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mb89352.c,v 1.55 2017/01/11 07:16:48 skrll Exp $");
 
 #ifdef DDB
 #define	integrate
@@ -293,7 +293,7 @@ spc_attach(struct spc_softc *sc)
 
 	/*
 	 * Add reference to adapter so that we drop the reference after
-	 * config_found() to make sure the adatper is disabled.
+	 * config_found() to make sure the adapter is disabled.
 	 */
 	if (scsipi_adapter_addref(adapt) != 0) {
 		aprint_error_dev(sc->sc_dev, "unable to enable controller\n");

Index: src/sys/dev/ic/ncr5380sbc.c
diff -u src/sys/dev/ic/ncr5380sbc.c:1.66 src/sys/dev/ic/ncr5380sbc.c:1.67
--- src/sys/dev/ic/ncr5380sbc.c:1.66	Sat Jul 28 00:43:23 2012
+++ src/sys/dev/ic/ncr5380sbc.c	Wed Jan 11 07:16:48 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: ncr5380sbc.c,v 1.66 2012/07/28 00:43:23 matt Exp $	*/
+/*	$NetBSD: ncr5380sbc.c,v 1.67 2017/01/11 07:16:48 skrll Exp $	*/
 
 /*
  * Copyright (c) 1995 David Jones, Gordon W. Ross
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ncr5380sbc.c,v 1.66 2012/07/28 00:43:23 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ncr5380sbc.c,v 1.67 2017/01/11 07:16:48 skrll Exp $");
 
 #include "opt_ddb.h"
 
@@ -2575,7 +2575,7 @@ ncr5380_attach(struct ncr5380_softc *sc)
 
 	/*
 	 * Add reference to adapter so that we drop the reference after
-	 * config_found() to make sure the adatper is disabled.
+	 * config_found() to make sure the adapter is disabled.
 	 */
 	if (scsipi_adapter_addref(adapt) != 0) {
 		aprint_error_dev(sc->sc_dev, "unable to enable controller\n");

Index: src/sys/dev/ic/ncr53c9x.c
diff -u src/sys/dev/ic/ncr53c9x.c:1.146 src/sys/dev/ic/ncr53c9x.c:1.147
--- src/sys/dev/ic/ncr53c9x.c:1.146	Sat Dec 24 06:04:50 2016
+++ src/sys/dev/ic/ncr53c9x.c	Wed Jan 11 07:16:48 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: ncr53c9x.c,v 1.146 2016/12/24 06:04:50 macallan Exp $	*/
+/*	$NetBSD: ncr53c9x.c,v 1.147 2017/01/11 07:16:48 skrll Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2002 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ncr53c9x.c,v 1.146 2016/12/24 06:04:50 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ncr53c9x.c,v 1.147 2017/01/11 07:16:48 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -286,7 +286,7 @@ ncr53c9x_attach(struct ncr53c9x_softc *s
 
 	/*
 	 * Add reference to adapter so that we drop the reference after
-	 * config_found() to make sure the adatper is disabled.
+	 * config_found() to make sure the adapter is disabled.
 	 */
 	if (scsipi_adapter_addref(adapt) != 0) {
 		aprint_error_dev(sc->sc_dev, "unable to enable controller\n");

Index: src/sys/dev/ic/sunscpal.c
diff -u src/sys/dev/ic/sunscpal.c:1.26 src/sys/dev/ic/sunscpal.c:1.27
--- src/sys/dev/ic/sunscpal.c:1.26	Tue Mar 25 16:19:13 2014
+++ src/sys/dev/ic/sunscpal.c	Wed Jan 11 07:16:48 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: sunscpal.c,v 1.26 2014/03/25 16:19:13 christos Exp $	*/
+/*	$NetBSD: sunscpal.c,v 1.27 2017/01/11 07:16:48 skrll Exp $	*/
 
 /*
  * Copyright (c) 2001 Matthew Fredette
@@ -76,7 +76,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunscpal.c,v 1.26 2014/03/25 16:19:13 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunscpal.c,v 1.27 2017/01/11 07:16:48 skrll Exp $");
 
 #include "opt_ddb.h"
 
@@ -2074,7 +2074,7 @@ sunscpal_attach(struct sunscpal_softc *s
 
 	/*
 	 * Add reference to adapter so that we drop the reference after
-	 * config_found() to make sure the adatper is disabled.
+	 * config_found() to make sure the adapter is disabled.
 	 */
 	if (scsipi_adapter_addref(&sc->sc_adapter) != 0) {
 		aprint_error_dev(sc->sc_dev, "unable to enable controller\n");

Index: src/sys/dev/ic/wd33c93.c
diff -u src/sys/dev/ic/wd33c93.c:1.25 src/sys/dev/ic/wd33c93.c:1.26
--- src/sys/dev/ic/wd33c93.c:1.25	Wed Jan 22 15:21:08 2014
+++ src/sys/dev/ic/wd33c93.c	Wed Jan 11 07:16:48 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: wd33c93.c,v 1.25 2014/01/22 15:21:08 christos Exp $	*/
+/*	$NetBSD: wd33c93.c,v 1.26 2017/01/11 07:16:48 skrll Exp $	*/
 
 /*
  * Copyright (c) 1990 The Regents of the University of California.
@@ -79,7 +79,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wd33c93.c,v 1.25 2014/01/22 15:21:08 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wd33c93.c,v 1.26 2017/01/11 07:16:48 skrll Exp $");
 
 #include "opt_ddb.h"
 
@@ -207,7 +207,7 @@ wd33c93_attach(struct wd33c93_softc *sc)
 
 	/*
 	 * Add reference to adapter so that we drop the reference after
-	 * config_found() to make sure the adatper is disabled.
+	 * config_found() to make sure the adapter is disabled.
 	 */
 	if (scsipi_adapter_addref(&sc->sc_adapter) != 0) {
 		aprint_error_dev(sc->sc_dev, "unable to enable controller\n");

Reply via email to