Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys s/adddress/address/
details: https://anonhg.NetBSD.org/src/rev/2edc16b40f53
branches: trunk
changeset: 449996:2edc16b40f53
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Mon Apr 01 06:12:51 2019 +0000
description:
s/adddress/address/
diffstat:
sys/arch/evbmips/cavium/autoconf.c | 6 +++---
sys/arch/mips/include/pmap.h | 4 ++--
sys/arch/sparc64/sparc64/db_interface.c | 6 +++---
sys/dev/pci/if_bnx.c | 6 +++---
4 files changed, 11 insertions(+), 11 deletions(-)
diffs (99 lines):
diff -r 113801c2ffec -r 2edc16b40f53 sys/arch/evbmips/cavium/autoconf.c
--- a/sys/arch/evbmips/cavium/autoconf.c Mon Apr 01 02:15:00 2019 +0000
+++ b/sys/arch/evbmips/cavium/autoconf.c Mon Apr 01 06:12:51 2019 +0000
@@ -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 @@
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);
diff -r 113801c2ffec -r 2edc16b40f53 sys/arch/mips/include/pmap.h
--- a/sys/arch/mips/include/pmap.h Mon Apr 01 02:15:00 2019 +0000
+++ b/sys/arch/mips/include/pmap.h Mon Apr 01 06:12:51 2019 +0000
@@ -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 @@
#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);
diff -r 113801c2ffec -r 2edc16b40f53 sys/arch/sparc64/sparc64/db_interface.c
--- a/sys/arch/sparc64/sparc64/db_interface.c Mon Apr 01 02:15:00 2019 +0000
+++ b/sys/arch/sparc64/sparc64/db_interface.c Mon Apr 01 06:12:51 2019 +0000
@@ -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 @@
"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]",
diff -r 113801c2ffec -r 2edc16b40f53 sys/dev/pci/if_bnx.c
--- a/sys/dev/pci/if_bnx.c Mon Apr 01 02:15:00 2019 +0000
+++ b/sys/dev/pci/if_bnx.c Mon Apr 01 06:12:51 2019 +0000
@@ -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 @@
"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",
Home |
Main Index |
Thread Index |
Old Index