Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys Fix regisers typo
details: https://anonhg.NetBSD.org/src/rev/b1d674925a69
branches: trunk
changeset: 348488:b1d674925a69
user: skrll <skrll%NetBSD.org@localhost>
date: Thu Oct 20 09:53:07 2016 +0000
description:
Fix regisers typo
diffstat:
sys/arch/arm/broadcom/bcm53xx_board.c | 6 +++---
sys/arch/arm/imx/imx6_board.c | 6 +++---
sys/arch/arm/imx/imx7_board.c | 6 +++---
sys/arch/arm/zynq/zynq7000_board.c | 6 +++---
sys/arch/evbarm/awin/awin_machdep.c | 6 +++---
sys/arch/evbarm/beagle/beagle_machdep.c | 6 +++---
sys/arch/evbarm/gumstix/gumstix_machdep.c | 4 ++--
sys/arch/evbarm/iq80310/iq80310reg.h | 4 ++--
sys/arch/evbarm/rockchip/rockchip_machdep.c | 6 +++---
sys/arch/evbarm/vexpress/vexpress_machdep.c | 6 +++---
sys/arch/shark/shark/sequoia.c | 6 +++---
sys/dev/marvell/if_mvxpe.c | 8 ++++----
12 files changed, 35 insertions(+), 35 deletions(-)
diffs (truncated from 315 to 300 lines):
diff -r 743de1c8ca39 -r b1d674925a69 sys/arch/arm/broadcom/bcm53xx_board.c
--- a/sys/arch/arm/broadcom/bcm53xx_board.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/arm/broadcom/bcm53xx_board.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/arm/imx/imx6_board.c
--- a/sys/arch/arm/imx/imx6_board.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/arm/imx/imx6_board.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/arm/imx/imx7_board.c
--- a/sys/arch/arm/imx/imx7_board.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/arm/imx/imx7_board.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/arm/zynq/zynq7000_board.c
--- a/sys/arch/arm/zynq/zynq7000_board.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/arm/zynq/zynq7000_board.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/evbarm/awin/awin_machdep.c
--- a/sys/arch/evbarm/awin/awin_machdep.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/evbarm/awin/awin_machdep.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/evbarm/beagle/beagle_machdep.c
--- a/sys/arch/evbarm/beagle/beagle_machdep.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/evbarm/beagle/beagle_machdep.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/evbarm/gumstix/gumstix_machdep.c
--- a/sys/arch/evbarm/gumstix/gumstix_machdep.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/evbarm/gumstix/gumstix_machdep.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/evbarm/iq80310/iq80310reg.h
--- a/sys/arch/evbarm/iq80310/iq80310reg.h Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/evbarm/iq80310/iq80310reg.h Thu Oct 20 09:53:07 2016 +0000
@@ -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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/evbarm/rockchip/rockchip_machdep.c
--- a/sys/arch/evbarm/rockchip/rockchip_machdep.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/evbarm/rockchip/rockchip_machdep.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/evbarm/vexpress/vexpress_machdep.c
--- a/sys/arch/evbarm/vexpress/vexpress_machdep.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/evbarm/vexpress/vexpress_machdep.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
* 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 -r 743de1c8ca39 -r b1d674925a69 sys/arch/shark/shark/sequoia.c
--- a/sys/arch/shark/shark/sequoia.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/arch/shark/shark/sequoia.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
**
*/
-/* 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 -r 743de1c8ca39 -r b1d674925a69 sys/dev/marvell/if_mvxpe.c
--- a/sys/dev/marvell/if_mvxpe.c Thu Oct 20 09:51:15 2016 +0000
+++ b/sys/dev/marvell/if_mvxpe.c Thu Oct 20 09:53:07 2016 +0000
@@ -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 @@
strlcpy(ifp->if_xname, device_xname(sc->sc_dev), sizeof(ifp->if_xname));
Home |
Main Index |
Thread Index |
Old Index