Module Name:    src
Committed By:   msaitoh
Date:           Mon Apr  1 06:12:52 UTC 2019

Modified Files:
        src/sys/arch/evbmips/cavium: autoconf.c
        src/sys/arch/mips/include: pmap.h
        src/sys/arch/sparc64/sparc64: db_interface.c
        src/sys/dev/pci: if_bnx.c

Log Message:
s/adddress/address/


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/evbmips/cavium/autoconf.c
cvs rdiff -u -r1.70 -r1.71 src/sys/arch/mips/include/pmap.h
cvs rdiff -u -r1.134 -r1.135 src/sys/arch/sparc64/sparc64/db_interface.c
cvs rdiff -u -r1.74 -r1.75 src/sys/dev/pci/if_bnx.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/evbmips/cavium/autoconf.c
diff -u src/sys/arch/evbmips/cavium/autoconf.c:1.3 src/sys/arch/evbmips/cavium/autoconf.c:1.4
--- src/sys/arch/evbmips/cavium/autoconf.c:1.3	Sat Jun  6 22:23:31 2015
+++ src/sys/arch/evbmips/cavium/autoconf.c	Mon Apr  1 06:12:51 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.3 2015/06/06 22:23:31 matt Exp $	*/
+/*	$NetBSD: autoconf.c,v 1.4 2019/04/01 06:12:51 msaitoh Exp $	*/
 
 /*
  * Copyright 2002 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.3 2015/06/06 22:23:31 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.4 2019/04/01 06:12:51 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -135,7 +135,7 @@ prop_set_cnmac(device_t dev)
 	KASSERT(pd != NULL);
 	prop_dictionary_set_and_rel(dict, "mac-address", pd);
 
-	/* ethernet phy adddress */
+	/* ethernet phy address */
 	switch (octeon_btinfo.obt_board_type) {
 	case BOARD_TYPE_UBIQUITI_E100:
 		pn = prop_number_create_integer(0x07 - unit);

Index: src/sys/arch/mips/include/pmap.h
diff -u src/sys/arch/mips/include/pmap.h:1.70 src/sys/arch/mips/include/pmap.h:1.71
--- src/sys/arch/mips/include/pmap.h:1.70	Mon Jul 24 09:56:45 2017
+++ src/sys/arch/mips/include/pmap.h	Mon Apr  1 06:12:51 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.h,v 1.70 2017/07/24 09:56:45 mrg Exp $	*/
+/*	$NetBSD: pmap.h,v 1.71 2019/04/01 06:12:51 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 1992, 1993
@@ -223,7 +223,7 @@ void	pmap_prefer(vaddr_t, vaddr_t *, vsi
 
 #define	PMAP_ENABLE_PMAP_KMPAGE	/* enable the PMAP_KMPAGE flag */
 
-// these use register_t so we can pass XKPHYS adddresses to them on N32
+// these use register_t so we can pass XKPHYS addresses to them on N32
 bool	pmap_md_direct_mapped_vaddr_p(register_t);
 paddr_t	pmap_md_direct_mapped_vaddr_to_paddr(register_t);
 bool	pmap_md_io_vaddr_p(vaddr_t);

Index: src/sys/arch/sparc64/sparc64/db_interface.c
diff -u src/sys/arch/sparc64/sparc64/db_interface.c:1.134 src/sys/arch/sparc64/sparc64/db_interface.c:1.135
--- src/sys/arch/sparc64/sparc64/db_interface.c:1.134	Thu Jan 10 10:33:49 2019
+++ src/sys/arch/sparc64/sparc64/db_interface.c	Mon Apr  1 06:12:51 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: db_interface.c,v 1.134 2019/01/10 10:33:49 mrg Exp $ */
+/*	$NetBSD: db_interface.c,v 1.135 2019/04/01 06:12:51 msaitoh Exp $ */
 
 /*
  * Copyright (c) 1996-2002 Eduardo Horvath.  All rights reserved.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.134 2019/01/10 10:33:49 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.135 2019/04/01 06:12:51 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -1083,7 +1083,7 @@ const struct db_command db_machine_comma
 	   "pa", "   pa:\tphysical address to look up") },
 	{ DDB_ADD_CMD("phys",	db_pload_cmd,	0,
 	   "Display physical memory.", "[address][,count]",
-	   "   adddress:\tphysical address to start (8 byte aligned)\n"
+	   "   address:\tphysical address to start (8 byte aligned)\n"
 	   "   count:\tnumber of bytes to display") },
 	{ DDB_ADD_CMD("pmap",	db_pmap_cmd,	0,
 	   "Display the pmap", "[/f] [pm_addr]",

Index: src/sys/dev/pci/if_bnx.c
diff -u src/sys/dev/pci/if_bnx.c:1.74 src/sys/dev/pci/if_bnx.c:1.75
--- src/sys/dev/pci/if_bnx.c:1.74	Fri Mar 29 08:54:35 2019
+++ src/sys/dev/pci/if_bnx.c	Mon Apr  1 06:12:51 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_bnx.c,v 1.74 2019/03/29 08:54:35 msaitoh Exp $	*/
+/*	$NetBSD: if_bnx.c,v 1.75 2019/04/01 06:12:51 msaitoh Exp $	*/
 /*	$OpenBSD: if_bnx.c,v 1.101 2013/03/28 17:21:44 brad Exp $	*/
 
 /*-
@@ -35,7 +35,7 @@
 #if 0
 __FBSDID("$FreeBSD: src/sys/dev/bce/if_bce.c,v 1.3 2006/04/13 14:12:26 ru Exp $");
 #endif
-__KERNEL_RCSID(0, "$NetBSD: if_bnx.c,v 1.74 2019/03/29 08:54:35 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_bnx.c,v 1.75 2019/04/01 06:12:51 msaitoh Exp $");
 
 /*
  * The following controllers are supported by this driver:
@@ -6416,7 +6416,7 @@ bnx_dump_driver_state(struct bnx_softc *
 	    "address\n", sc->stats_block);
 
 	BNX_PRINTF(sc, "%p - (sc->tx_bd_chain) tx_bd chain virtual "
-	    "adddress\n", sc->tx_bd_chain);
+	    "address\n", sc->tx_bd_chain);
 
 #if 0
 	BNX_PRINTF(sc, "%p - (sc->rx_bd_chain) rx_bd chain virtual address\n",

Reply via email to