Fix typo in comment(s/similiar/similar/).

This commit is contained in:
msaitoh 2019-06-03 05:59:01 +00:00
parent aeda3d1ef3
commit b4eb82f5ca
5 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: wired_map.c,v 1.6 2016/07/11 16:15:36 matt Exp $ */
/* $NetBSD: wired_map.c,v 1.7 2019/06/03 05:59:01 msaitoh Exp $ */
/*-
* Copyright (c) 2005 Tadpole Computer Inc.
@ -57,13 +57,13 @@
*/
/*
* This code is derived from similiar code in the ARC port of NetBSD, but
* This code is derived from similar code in the ARC port of NetBSD, but
* it now bears little resemblence to it owing to quite different needs
* from the mapping logic.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: wired_map.c,v 1.6 2016/07/11 16:15:36 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: wired_map.c,v 1.7 2019/06/03 05:59:01 msaitoh Exp $");
#define __PMAP_PRIVATE

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.77 2014/03/24 18:50:31 christos Exp $ */
/* $NetBSD: machdep.c,v 1.78 2019/06/03 05:59:02 msaitoh Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@ -149,7 +149,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.77 2014/03/24 18:50:31 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.78 2019/06/03 05:59:02 msaitoh Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@ -1150,7 +1150,7 @@ mm_md_direct_mapped_phys(paddr_t paddr, vaddr_t *vaddr)
}
/*
* Allow access to the PROM mapping similiar to uvm_kernacc().
* Allow access to the PROM mapping similar to uvm_kernacc().
*/
int
mm_md_kernacc(void *ptr, vm_prot_t prot, bool *handled)

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.208 2014/03/24 20:06:33 christos Exp $ */
/* $NetBSD: machdep.c,v 1.209 2019/06/03 05:59:02 msaitoh Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@ -78,7 +78,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.208 2014/03/24 20:06:33 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.209 2019/06/03 05:59:02 msaitoh Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@ -708,7 +708,7 @@ mm_md_direct_mapped_phys(paddr_t paddr, vaddr_t *vaddr)
}
/*
* Allow access to the PROM mapping similiar to uvm_kernacc().
* Allow access to the PROM mapping similar to uvm_kernacc().
*/
int
mm_md_kernacc(void *ptr, vm_prot_t prot, bool *handled)

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.135 2014/03/24 20:06:33 christos Exp $ */
/* $NetBSD: machdep.c,v 1.136 2019/06/03 05:59:02 msaitoh Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.135 2014/03/24 20:06:33 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.136 2019/06/03 05:59:02 msaitoh Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@ -669,7 +669,7 @@ mm_md_direct_mapped_phys(paddr_t paddr, vaddr_t *vaddr)
}
/*
* Allow access to the PROM mapping similiar to uvm_kernacc().
* Allow access to the PROM mapping similar to uvm_kernacc().
*/
int
mm_md_kernacc(void *ptr, vm_prot_t prot, bool *handled)

View File

@ -1,4 +1,4 @@
/* $NetBSD: hdc9224.c,v 1.59 2018/09/03 16:29:28 riastradh Exp $ */
/* $NetBSD: hdc9224.c,v 1.60 2019/06/03 05:59:02 msaitoh Exp $ */
/*
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -45,7 +45,7 @@
#undef RDDEBUG
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: hdc9224.c,v 1.59 2018/09/03 16:29:28 riastradh Exp $");
__KERNEL_RCSID(0, "$NetBSD: hdc9224.c,v 1.60 2019/06/03 05:59:02 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -225,7 +225,7 @@ static volatile int u;
#define HDC_RSTAT *(volatile char *)(sc->sc_regs + 4)
/*
* new-config's hdcmatch() is similiar to old-config's hdcprobe(),
* new-config's hdcmatch() is similar to old-config's hdcprobe(),
* thus we probe for the existence of the controller and reset it.
* NB: we can't initialize the controller yet, since space for hdcsoftc
* is not yet allocated. Thus we do this in hdcattach()...