Module Name:    src
Committed By:   skrll
Date:           Thu Oct 20 09:53:08 UTC 2016

Modified Files:
        src/sys/arch/arm/broadcom: bcm53xx_board.c
        src/sys/arch/arm/imx: imx6_board.c imx7_board.c
        src/sys/arch/arm/zynq: zynq7000_board.c
        src/sys/arch/evbarm/awin: awin_machdep.c
        src/sys/arch/evbarm/beagle: beagle_machdep.c
        src/sys/arch/evbarm/gumstix: gumstix_machdep.c
        src/sys/arch/evbarm/iq80310: iq80310reg.h
        src/sys/arch/evbarm/rockchip: rockchip_machdep.c
        src/sys/arch/evbarm/vexpress: vexpress_machdep.c
        src/sys/arch/shark/shark: sequoia.c
        src/sys/dev/marvell: if_mvxpe.c

Log Message:
Fix regisers typo


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/arm/broadcom/bcm53xx_board.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/imx/imx6_board.c
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/imx/imx7_board.c
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/zynq/zynq7000_board.c
cvs rdiff -u -r1.48 -r1.49 src/sys/arch/evbarm/awin/awin_machdep.c
cvs rdiff -u -r1.67 -r1.68 src/sys/arch/evbarm/beagle/beagle_machdep.c
cvs rdiff -u -r1.56 -r1.57 src/sys/arch/evbarm/gumstix/gumstix_machdep.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/evbarm/iq80310/iq80310reg.h
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/evbarm/rockchip/rockchip_machdep.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/vexpress/vexpress_machdep.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/shark/shark/sequoia.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/marvell/if_mvxpe.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/arch/arm/broadcom/bcm53xx_board.c
diff -u src/sys/arch/arm/broadcom/bcm53xx_board.c:1.22 src/sys/arch/arm/broadcom/bcm53xx_board.c:1.23
--- src/sys/arch/arm/broadcom/bcm53xx_board.c:1.22	Sun Sep 14 21:06:37 2014
+++ src/sys/arch/arm/broadcom/bcm53xx_board.c	Thu Oct 20 09:53:07 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: bcm53xx_board.c,v 1.22 2014/09/14 21:06:37 skrll Exp $	*/
+/*	$NetBSD: bcm53xx_board.c,v 1.23 2016/10/20 09:53:07 skrll Exp $	*/
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -35,7 +35,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(1, "$NetBSD: bcm53xx_board.c,v 1.22 2014/09/14 21:06:37 skrll Exp $");
+__KERNEL_RCSID(1, "$NetBSD: bcm53xx_board.c,v 1.23 2016/10/20 09:53:07 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -604,7 +604,7 @@ bcm53xx_device_register(device_t self, v
 		 * XXX KLUDGE ALERT XXX
 		 * The iot mainbus supplies is completely wrong since it scales
 		 * addresses by 2.  The simplest remedy is to replace with our
-		 * bus space used for the armcore regisers (which armperiph uses). 
+		 * bus space used for the armcore registers (which armperiph uses). 
 		 */
 		struct mainbus_attach_args * const mb = aux;
 		mb->mb_iot = bcm53xx_armcore_bst;

Index: src/sys/arch/arm/imx/imx6_board.c
diff -u src/sys/arch/arm/imx/imx6_board.c:1.5 src/sys/arch/arm/imx/imx6_board.c:1.6
--- src/sys/arch/arm/imx/imx6_board.c:1.5	Thu Dec 31 12:14:01 2015
+++ src/sys/arch/arm/imx/imx6_board.c	Thu Oct 20 09:53:07 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: imx6_board.c,v 1.5 2015/12/31 12:14:01 ryo Exp $	*/
+/*	$NetBSD: imx6_board.c,v 1.6 2016/10/20 09:53:07 skrll Exp $	*/
 
 /*
  * Copyright (c) 2012  Genetec Corporation.  All rights reserved.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: imx6_board.c,v 1.5 2015/12/31 12:14:01 ryo Exp $");
+__KERNEL_RCSID(1, "$NetBSD: imx6_board.c,v 1.6 2016/10/20 09:53:07 skrll Exp $");
 
 #include "opt_imx.h"
 #include "arml2cc.h"
@@ -205,7 +205,7 @@ imx6_device_register(device_t self, void
 		 * XXX KLUDGE ALERT XXX
 		 * The iot mainbus supplies is completely wrong since it scales
 		 * addresses by 2.  The simpliest remedy is to replace with our
-		 * bus space used for the armcore regisers (which armperiph uses).
+		 * bus space used for the armcore registers (which armperiph uses).
 		 */
 		struct mainbus_attach_args * const mb = aux;
 		mb->mb_iot = imx6_armcore_bst;

Index: src/sys/arch/arm/imx/imx7_board.c
diff -u src/sys/arch/arm/imx/imx7_board.c:1.1 src/sys/arch/arm/imx/imx7_board.c:1.2
--- src/sys/arch/arm/imx/imx7_board.c:1.1	Tue May 17 06:44:45 2016
+++ src/sys/arch/arm/imx/imx7_board.c	Thu Oct 20 09:53:07 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: imx7_board.c,v 1.1 2016/05/17 06:44:45 ryo Exp $	*/
+/*	$NetBSD: imx7_board.c,v 1.2 2016/10/20 09:53:07 skrll Exp $	*/
 
 /*
  * Copyright (c) 2012  Genetec Corporation.  All rights reserved.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: imx7_board.c,v 1.1 2016/05/17 06:44:45 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: imx7_board.c,v 1.2 2016/10/20 09:53:07 skrll Exp $");
 
 #include "opt_imx.h"
 
@@ -217,7 +217,7 @@ imx7_device_register(device_t self, void
 		 * XXX KLUDGE ALERT XXX
 		 * The iot mainbus supplies is completely wrong since it scales
 		 * addresses by 2.  The simpliest remedy is to replace with our
-		 * bus space used for the armcore regisers
+		 * bus space used for the armcore registers
 		 * (which armperiph uses).
 		 */
 		struct mainbus_attach_args * const mb = aux;

Index: src/sys/arch/arm/zynq/zynq7000_board.c
diff -u src/sys/arch/arm/zynq/zynq7000_board.c:1.1 src/sys/arch/arm/zynq/zynq7000_board.c:1.2
--- src/sys/arch/arm/zynq/zynq7000_board.c:1.1	Fri Jan 23 12:34:09 2015
+++ src/sys/arch/arm/zynq/zynq7000_board.c	Thu Oct 20 09:53:07 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: zynq7000_board.c,v 1.1 2015/01/23 12:34:09 hkenken Exp $	*/
+/*	$NetBSD: zynq7000_board.c,v 1.2 2016/10/20 09:53:07 skrll Exp $	*/
 /*-
  * Copyright (c) 2015  Genetec Corporation.  All rights reserved.
  * Written by Hashimoto Kenichi for Genetec Corporation.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: zynq7000_board.c,v 1.1 2015/01/23 12:34:09 hkenken Exp $");
+__KERNEL_RCSID(1, "$NetBSD: zynq7000_board.c,v 1.2 2016/10/20 09:53:07 skrll Exp $");
 
 #include "opt_zynq.h"
 #include "arml2cc.h"
@@ -113,7 +113,7 @@ zynq7000_device_register(device_t self, 
 		 * XXX KLUDGE ALERT XXX
 		 * The iot mainbus supplies is completely wrong since it scales
 		 * addresses by 2.  The simpliest remedy is to replace with our
-		 * bus space used for the armcore regisers (which armperiph uses).
+		 * bus space used for the armcore registers (which armperiph uses).
 		 */
 		struct mainbus_attach_args * const mb = aux;
 		mb->mb_iot = zynq7000_armcore_bst;

Index: src/sys/arch/evbarm/awin/awin_machdep.c
diff -u src/sys/arch/evbarm/awin/awin_machdep.c:1.48 src/sys/arch/evbarm/awin/awin_machdep.c:1.49
--- src/sys/arch/evbarm/awin/awin_machdep.c:1.48	Mon Apr 25 20:15:46 2016
+++ src/sys/arch/evbarm/awin/awin_machdep.c	Thu Oct 20 09:53:07 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: awin_machdep.c,v 1.48 2016/04/25 20:15:46 bouyer Exp $ */
+/*	$NetBSD: awin_machdep.c,v 1.49 2016/10/20 09:53:07 skrll Exp $ */
 
 /*
  * Machine dependent functions for kernel setup for TI OSK5912 board.
@@ -125,7 +125,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: awin_machdep.c,v 1.48 2016/04/25 20:15:46 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: awin_machdep.c,v 1.49 2016/10/20 09:53:07 skrll Exp $");
 
 #include "opt_machdep.h"
 #include "opt_ddb.h"
@@ -651,7 +651,7 @@ awin_device_register(device_t self, void
 		 * XXX KLUDGE ALERT XXX
 		 * The iot mainbus supplies is completely wrong since it scales
 		 * addresses by 2.  The simpliest remedy is to replace with our
-		 * bus space used for the armcore regisers (which armperiph uses). 
+		 * bus space used for the armcore registers (which armperiph uses). 
 		 */
 		struct mainbus_attach_args * const mb = aux;
 		mb->mb_iot = &armv7_generic_bs_tag;

Index: src/sys/arch/evbarm/beagle/beagle_machdep.c
diff -u src/sys/arch/evbarm/beagle/beagle_machdep.c:1.67 src/sys/arch/evbarm/beagle/beagle_machdep.c:1.68
--- src/sys/arch/evbarm/beagle/beagle_machdep.c:1.67	Wed Oct 19 08:18:38 2016
+++ src/sys/arch/evbarm/beagle/beagle_machdep.c	Thu Oct 20 09:53:08 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: beagle_machdep.c,v 1.67 2016/10/19 08:18:38 mrg Exp $ */
+/*	$NetBSD: beagle_machdep.c,v 1.68 2016/10/20 09:53:08 skrll Exp $ */
 
 /*
  * Machine dependent functions for kernel setup for TI OSK5912 board.
@@ -125,7 +125,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: beagle_machdep.c,v 1.67 2016/10/19 08:18:38 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: beagle_machdep.c,v 1.68 2016/10/20 09:53:08 skrll Exp $");
 
 #include "opt_machdep.h"
 #include "opt_ddb.h"
@@ -969,7 +969,7 @@ beagle_device_register(device_t self, vo
 		 * XXX KLUDGE ALERT XXX
 		 * The iot mainbus supplies is completely wrong since it scales
 		 * addresses by 2.  The simpliest remedy is to replace with our
-		 * bus space used for the armcore regisers (which armperiph uses). 
+		 * bus space used for the armcore registers (which armperiph uses). 
 		 */
 		struct mainbus_attach_args * const mb = aux;
 		mb->mb_iot = &omap_bs_tag;

Index: src/sys/arch/evbarm/gumstix/gumstix_machdep.c
diff -u src/sys/arch/evbarm/gumstix/gumstix_machdep.c:1.56 src/sys/arch/evbarm/gumstix/gumstix_machdep.c:1.57
--- src/sys/arch/evbarm/gumstix/gumstix_machdep.c:1.56	Wed Oct 19 14:07:22 2016
+++ src/sys/arch/evbarm/gumstix/gumstix_machdep.c	Thu Oct 20 09:53:08 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: gumstix_machdep.c,v 1.56 2016/10/19 14:07:22 kiyohara Exp $ */
+/*	$NetBSD: gumstix_machdep.c,v 1.57 2016/10/20 09:53:08 skrll Exp $ */
 /*
  * Copyright (C) 2005, 2006, 2007  WIDE Project and SOUM Corporation.
  * All rights reserved.
@@ -1067,7 +1067,7 @@ gumstix_device_register(device_t dev, vo
 			 * The iot mainbus supplies is completely wrong since
 			 * it scales addresses by 2.  The simpliest remedy is
 			 * to replace with our bus space used for the armcore
-			 * regisers (which armperiph uses).
+			 * registers (which armperiph uses).
 			 */
 			struct mainbus_attach_args * const mb = aux;
 			mb->mb_iot = &omap_bs_tag;

Index: src/sys/arch/evbarm/iq80310/iq80310reg.h
diff -u src/sys/arch/evbarm/iq80310/iq80310reg.h:1.6 src/sys/arch/evbarm/iq80310/iq80310reg.h:1.7
--- src/sys/arch/evbarm/iq80310/iq80310reg.h:1.6	Sat Dec 24 20:06:59 2005
+++ src/sys/arch/evbarm/iq80310/iq80310reg.h	Thu Oct 20 09:53:08 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: iq80310reg.h,v 1.6 2005/12/24 20:06:59 perry Exp $	*/
+/*	$NetBSD: iq80310reg.h,v 1.7 2016/10/20 09:53:08 skrll Exp $	*/
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -81,7 +81,7 @@
 
 /*
  * We allocate a page table for VA 0xfe400000 (4MB) and map the i80312
- * PCI I/O space (2 * 64L) and i80312 regisers (4K) there.
+ * PCI I/O space (2 * 64L) and i80312 registers (4K) there.
  */
 #define	IQ80310_IOPXS_VBASE	0xfe400000UL
 #define	IQ80310_PIOW_VBASE	IQ80310_IOPXS_VBASE

Index: src/sys/arch/evbarm/rockchip/rockchip_machdep.c
diff -u src/sys/arch/evbarm/rockchip/rockchip_machdep.c:1.22 src/sys/arch/evbarm/rockchip/rockchip_machdep.c:1.23
--- src/sys/arch/evbarm/rockchip/rockchip_machdep.c:1.22	Sun Mar 29 22:56:23 2015
+++ src/sys/arch/evbarm/rockchip/rockchip_machdep.c	Thu Oct 20 09:53:08 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: rockchip_machdep.c,v 1.22 2015/03/29 22:56:23 jmcneill Exp $ */
+/*	$NetBSD: rockchip_machdep.c,v 1.23 2016/10/20 09:53:08 skrll Exp $ */
 
 /*
  * Machine dependent functions for kernel setup for TI OSK5912 board.
@@ -125,7 +125,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rockchip_machdep.c,v 1.22 2015/03/29 22:56:23 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rockchip_machdep.c,v 1.23 2016/10/20 09:53:08 skrll Exp $");
 
 #include "opt_machdep.h"
 #include "opt_ddb.h"
@@ -725,7 +725,7 @@ rockchip_device_register(device_t self, 
 		 * XXX KLUDGE ALERT XXX
 		 * The iot mainbus supplies is completely wrong since it scales
 		 * addresses by 2.  The simpliest remedy is to replace with our
-		 * bus space used for the armcore regisers (which armperiph uses). 
+		 * bus space used for the armcore registers (which armperiph uses). 
 		 */
 		struct mainbus_attach_args * const mb = aux;
 		mb->mb_iot = &armv7_generic_bs_tag;

Index: src/sys/arch/evbarm/vexpress/vexpress_machdep.c
diff -u src/sys/arch/evbarm/vexpress/vexpress_machdep.c:1.2 src/sys/arch/evbarm/vexpress/vexpress_machdep.c:1.3
--- src/sys/arch/evbarm/vexpress/vexpress_machdep.c:1.2	Wed Feb 11 07:51:10 2015
+++ src/sys/arch/evbarm/vexpress/vexpress_machdep.c	Thu Oct 20 09:53:08 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: vexpress_machdep.c,v 1.2 2015/02/11 07:51:10 ozaki-r Exp $	*/
+/*	$NetBSD: vexpress_machdep.c,v 1.3 2016/10/20 09:53:08 skrll Exp $	*/
 
 /*
  * Copyright (c) 2015 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vexpress_machdep.c,v 1.2 2015/02/11 07:51:10 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vexpress_machdep.c,v 1.3 2016/10/20 09:53:08 skrll Exp $");
 
 #include "opt_machdep.h"
 #include "opt_ddb.h"
@@ -265,7 +265,7 @@ vexpress_device_register(device_t self, 
 		 * XXX KLUDGE ALERT XXX
 		 * The iot mainbus supplies is completely wrong since it scales
 		 * addresses by 2.  The simpliest remedy is to replace with our
-		 * bus space used for the armcore regisers (which armperiph uses).
+		 * bus space used for the armcore registers (which armperiph uses).
 		 */
 		struct mainbus_attach_args *const mb = aux;
 		mb->mb_iot = &vexpress_bs_tag;

Index: src/sys/arch/shark/shark/sequoia.c
diff -u src/sys/arch/shark/shark/sequoia.c:1.13 src/sys/arch/shark/shark/sequoia.c:1.14
--- src/sys/arch/shark/shark/sequoia.c:1.13	Thu Jul  7 06:55:38 2016
+++ src/sys/arch/shark/shark/sequoia.c	Thu Oct 20 09:53:08 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: sequoia.c,v 1.13 2016/07/07 06:55:38 msaitoh Exp $	*/
+/*	$NetBSD: sequoia.c,v 1.14 2016/10/20 09:53:08 skrll Exp $	*/
 
 /*
  * Copyright 1997
@@ -40,7 +40,7 @@
 */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sequoia.c,v 1.13 2016/07/07 06:55:38 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sequoia.c,v 1.14 2016/10/20 09:53:08 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -68,7 +68,7 @@ __KERNEL_RCSID(0, "$NetBSD: sequoia.c,v 
 **
 */
 
-/* define regisers on sequoia used by pins  */
+/* define registers on sequoia used by pins  */
 #define SEQUOIA_1GPIO       PMC_GPCR_REG         /* reg 0x007 gpio 0-3 */      
 #define SEQUOIA_2GPIO       SEQ2_OGPIOCR_REG     /* reg 0x304 gpio 4.8 */
 

Index: src/sys/dev/marvell/if_mvxpe.c
diff -u src/sys/dev/marvell/if_mvxpe.c:1.14 src/sys/dev/marvell/if_mvxpe.c:1.15
--- src/sys/dev/marvell/if_mvxpe.c:1.14	Mon Oct 10 14:23:35 2016
+++ src/sys/dev/marvell/if_mvxpe.c	Thu Oct 20 09:53:08 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_mvxpe.c,v 1.14 2016/10/10 14:23:35 kiyohara Exp $	*/
+/*	$NetBSD: if_mvxpe.c,v 1.15 2016/10/20 09:53:08 skrll Exp $	*/
 /*
  * Copyright (c) 2015 Internet Initiative Japan Inc.
  * All rights reserved.
@@ -25,7 +25,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_mvxpe.c,v 1.14 2016/10/10 14:23:35 kiyohara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_mvxpe.c,v 1.15 2016/10/20 09:53:08 skrll Exp $");
 
 #include "opt_multiprocessor.h"
 
@@ -450,7 +450,7 @@ mvxpe_attach(device_t parent, device_t s
 	strlcpy(ifp->if_xname, device_xname(sc->sc_dev), sizeof(ifp->if_xname));
 
 	/*
-	 * Enable DMA engines and Initiazlie Device Regisers.
+	 * Enable DMA engines and Initiazlie Device Registers.
 	 */
 	MVXPE_WRITE(sc, MVXPE_PRXINIT, 0x00000000);
 	MVXPE_WRITE(sc, MVXPE_PTXINIT, 0x00000000);
@@ -1626,7 +1626,7 @@ mvxpe_tick(void *arg)
 	mii_tick(mii);
 	mii_pollstat(&sc->sc_mii);
 
-	/* read mib regisers(clear by read) */
+	/* read mib registers(clear by read) */
 	mvxpe_update_mib(sc);
 
 	/* read counter registers(clear by read) */

Reply via email to