diff options
| author | skrll <skrll@NetBSD.org> | 2016-10-20 09:53:07 +0000 |
|---|---|---|
| committer | skrll <skrll@NetBSD.org> | 2016-10-20 09:53:07 +0000 |
| commit | d1fbb75b2b6d45fa90c46152ebd1f8eeef33d1eb (patch) | |
| tree | 2b875a7f2a44a1c921efe449a26d854e614c64d3 | |
| parent | b04184546314ee1eef79defac8907ed7874777aa (diff) | |
Fix regisers typo
| -rw-r--r-- | sys/arch/arm/broadcom/bcm53xx_board.c | 6 | ||||
| -rw-r--r-- | sys/arch/arm/imx/imx6_board.c | 6 | ||||
| -rw-r--r-- | sys/arch/arm/imx/imx7_board.c | 6 | ||||
| -rw-r--r-- | sys/arch/arm/zynq/zynq7000_board.c | 6 | ||||
| -rw-r--r-- | sys/arch/evbarm/awin/awin_machdep.c | 6 | ||||
| -rw-r--r-- | sys/arch/evbarm/beagle/beagle_machdep.c | 6 | ||||
| -rw-r--r-- | sys/arch/evbarm/gumstix/gumstix_machdep.c | 4 | ||||
| -rw-r--r-- | sys/arch/evbarm/iq80310/iq80310reg.h | 4 | ||||
| -rw-r--r-- | sys/arch/evbarm/rockchip/rockchip_machdep.c | 6 | ||||
| -rw-r--r-- | sys/arch/evbarm/vexpress/vexpress_machdep.c | 6 | ||||
| -rw-r--r-- | sys/arch/shark/shark/sequoia.c | 6 | ||||
| -rw-r--r-- | sys/dev/marvell/if_mvxpe.c | 8 |
12 files changed, 35 insertions, 35 deletions
diff --git a/sys/arch/arm/broadcom/bcm53xx_board.c b/sys/arch/arm/broadcom/bcm53xx_board.c index d2110348321..98fb9bedf2b 100644 --- a/sys/arch/arm/broadcom/bcm53xx_board.c +++ b/sys/arch/arm/broadcom/bcm53xx_board.c @@ -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, void *aux) * 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; diff --git a/sys/arch/arm/imx/imx6_board.c b/sys/arch/arm/imx/imx6_board.c index 63558859209..d0a21318f3a 100644 --- a/sys/arch/arm/imx/imx6_board.c +++ b/sys/arch/arm/imx/imx6_board.c @@ -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 *aux) * 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; diff --git a/sys/arch/arm/imx/imx7_board.c b/sys/arch/arm/imx/imx7_board.c index a4a1e4de6f8..5a88b5ae471 100644 --- a/sys/arch/arm/imx/imx7_board.c +++ b/sys/arch/arm/imx/imx7_board.c @@ -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 *aux) * 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; diff --git a/sys/arch/arm/zynq/zynq7000_board.c b/sys/arch/arm/zynq/zynq7000_board.c index 0e72b2c98a3..6541f99d4ea 100644 --- a/sys/arch/arm/zynq/zynq7000_board.c +++ b/sys/arch/arm/zynq/zynq7000_board.c @@ -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, void *aux) * 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; diff --git a/sys/arch/evbarm/awin/awin_machdep.c b/sys/arch/evbarm/awin/awin_machdep.c index f45471fe30a..c2ccee7a51d 100644 --- a/sys/arch/evbarm/awin/awin_machdep.c +++ b/sys/arch/evbarm/awin/awin_machdep.c @@ -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 *aux) * 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; diff --git a/sys/arch/evbarm/beagle/beagle_machdep.c b/sys/arch/evbarm/beagle/beagle_machdep.c index 2a0dd8911af..80d2f306ac7 100644 --- a/sys/arch/evbarm/beagle/beagle_machdep.c +++ b/sys/arch/evbarm/beagle/beagle_machdep.c @@ -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, void *aux) * 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; diff --git a/sys/arch/evbarm/gumstix/gumstix_machdep.c b/sys/arch/evbarm/gumstix/gumstix_machdep.c index 9f09f09e20a..cd0c0da26c1 100644 --- a/sys/arch/evbarm/gumstix/gumstix_machdep.c +++ b/sys/arch/evbarm/gumstix/gumstix_machdep.c @@ -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, void *aux) * 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; diff --git a/sys/arch/evbarm/iq80310/iq80310reg.h b/sys/arch/evbarm/iq80310/iq80310reg.h index 75f84131387..6de7da64e89 100644 --- a/sys/arch/evbarm/iq80310/iq80310reg.h +++ b/sys/arch/evbarm/iq80310/iq80310reg.h @@ -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 diff --git a/sys/arch/evbarm/rockchip/rockchip_machdep.c b/sys/arch/evbarm/rockchip/rockchip_machdep.c index 87558005fd2..cce8247e1bb 100644 --- a/sys/arch/evbarm/rockchip/rockchip_machdep.c +++ b/sys/arch/evbarm/rockchip/rockchip_machdep.c @@ -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, void *aux) * 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; diff --git a/sys/arch/evbarm/vexpress/vexpress_machdep.c b/sys/arch/evbarm/vexpress/vexpress_machdep.c index 13bb837cb39..9239f803643 100644 --- a/sys/arch/evbarm/vexpress/vexpress_machdep.c +++ b/sys/arch/evbarm/vexpress/vexpress_machdep.c @@ -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, void *aux) * 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; diff --git a/sys/arch/shark/shark/sequoia.c b/sys/arch/shark/shark/sequoia.c index 20ed9666287..261b06d656d 100644 --- a/sys/arch/shark/shark/sequoia.c +++ b/sys/arch/shark/shark/sequoia.c @@ -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 1.13 2016/07/07 06:55:38 msaitoh Exp $") ** */ -/* 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 */ diff --git a/sys/dev/marvell/if_mvxpe.c b/sys/dev/marvell/if_mvxpe.c index def744d5b17..5ce019dfe0c 100644 --- a/sys/dev/marvell/if_mvxpe.c +++ b/sys/dev/marvell/if_mvxpe.c @@ -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 self, void *aux) 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) */ |
