s/ressource/resource/. No functional change.

This commit is contained in:
msaitoh 2020-08-24 05:37:40 +00:00
parent a5d01d1024
commit 615712693e
7 changed files with 21 additions and 21 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pciide_pnpbios.c,v 1.33 2017/10/20 07:06:06 jdolecek Exp $ */
/* $NetBSD: pciide_pnpbios.c,v 1.34 2020/08/24 05:37:40 msaitoh Exp $ */
/*
* Copyright (c) 1999 Soren S. Jorvang. All rights reserved.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pciide_pnpbios.c,v 1.33 2017/10/20 07:06:06 jdolecek Exp $");
__KERNEL_RCSID(0, "$NetBSD: pciide_pnpbios.c,v 1.34 2020/08/24 05:37:40 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -178,7 +178,7 @@ pciide_pnpbios_attach(device_t parent, device_t self, void *aux)
for (drive = 0; drive < cp->ata_channel.ch_ndrives; drive++) {
/*
* we have not probed the drives yet,
* allocate ressources for all of them.
* allocate resources for all of them.
*/
if (pciide_dma_table_setup(sc, 0, drive) != 0) {
/* Abort DMA setup */

View File

@ -1,4 +1,4 @@
/* $NetBSD: pnpbios.c,v 1.74 2019/11/10 21:16:28 chs Exp $ */
/* $NetBSD: pnpbios.c,v 1.75 2020/08/24 05:37:40 msaitoh Exp $ */
/*
* Copyright (c) 2000 Jason R. Thorpe. All rights reserved.
@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pnpbios.c,v 1.74 2019/11/10 21:16:28 chs Exp $");
__KERNEL_RCSID(0, "$NetBSD: pnpbios.c,v 1.75 2020/08/24 05:37:40 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -155,7 +155,7 @@ static int pnp_debugdump(struct pnpresources *, const void *, size_t);
#endif
/*
* small ressource types (beginning with 1)
* small resource types (beginning with 1)
*/
static const struct{
int (*handler)(struct pnpresources *, const void *, size_t);

View File

@ -1,4 +1,4 @@
/* $NetBSD: am7990.c,v 1.7 2008/12/14 18:46:33 christos Exp $ */
/* $NetBSD: am7990.c,v 1.8 2020/08/24 05:37:40 msaitoh Exp $ */
/* mostly from netbsd:sys/arch/i386/netboot/ne2100.c
memory allocation now 1 chunk, added deallocation
@ -157,7 +157,7 @@ am7990_init(void)
}
/*
* Stop ethernet board and free ressources
* Stop ethernet board and free resources
*/
void
EtherStop(void)

View File

@ -1,4 +1,4 @@
/* $NetBSD: acpi_i2c.c,v 1.7 2020/06/11 02:39:30 thorpej Exp $ */
/* $NetBSD: acpi_i2c.c,v 1.8 2020/08/24 05:37:41 msaitoh Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: acpi_i2c.c,v 1.7 2020/06/11 02:39:30 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: acpi_i2c.c,v 1.8 2020/08/24 05:37:41 msaitoh Exp $");
#include <dev/acpi/acpireg.h>
#include <dev/acpi/acpivar.h>
@ -152,7 +152,7 @@ acpi_i2c_resource_parse_callback(ACPI_RESOURCE *res, void *context)
case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
break;
default:
printf("ressource type 0x%x ignored\n", res->Type);
printf("resource type 0x%x ignored\n", res->Type);
}
return_ACPI_STATUS(AE_OK);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: btvmei.c,v 1.32 2019/11/10 21:16:36 chs Exp $ */
/* $NetBSD: btvmei.c,v 1.33 2020/08/24 05:37:41 msaitoh Exp $ */
/*
* Copyright (c) 1999
@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: btvmei.c,v 1.32 2019/11/10 21:16:36 chs Exp $");
__KERNEL_RCSID(0, "$NetBSD: btvmei.c,v 1.33 2020/08/24 05:37:41 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -61,7 +61,7 @@ void b3_617_slaveconfig(device_t, struct vme_attach_args *);
static void b3_617_vmeintr(struct b3_617_softc *, unsigned char);
/*
* mapping ressources, needed for deallocation
* mapping resources, needed for deallocation
*/
struct b3_617_vmeresc {
bus_space_handle_t handle;
@ -336,7 +336,7 @@ b3_617_halt(struct b3_617_softc *sc)
{
/*
* because detach code checks for existence of children,
* all ressources (mappings, VME IRQs, DMA requests)
* all resources (mappings, VME IRQs, DMA requests)
* should be deallocated at this point
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: pciide_common.c,v 1.66 2018/09/03 16:29:32 riastradh Exp $ */
/* $NetBSD: pciide_common.c,v 1.67 2020/08/24 05:37:41 msaitoh Exp $ */
/*
@ -70,7 +70,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pciide_common.c,v 1.66 2018/09/03 16:29:32 riastradh Exp $");
__KERNEL_RCSID(0, "$NetBSD: pciide_common.c,v 1.67 2020/08/24 05:37:41 msaitoh Exp $");
#include <sys/param.h>
@ -1073,7 +1073,7 @@ next:
for (drive = 0; drive < sc->sc_wdcdev.wdc_maxdrives; drive++) {
/*
* we have not probed the drives yet, allocate
* ressources for all of them.
* resources for all of them.
*/
if (pciide_dma_table_setup(sc, channel, drive) != 0) {
/* Abort DMA setup */

View File

@ -1,4 +1,4 @@
/* $NetBSD: vme.c,v 1.26 2012/10/27 17:18:38 chs Exp $ */
/* $NetBSD: vme.c,v 1.27 2020/08/24 05:37:41 msaitoh Exp $ */
/*
* Copyright (c) 1999
@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vme.c,v 1.26 2012/10/27 17:18:38 chs Exp $");
__KERNEL_RCSID(0, "$NetBSD: vme.c,v 1.27 2020/08/24 05:37:41 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -222,7 +222,7 @@ vmedetach(device_t dev)
struct vmebus_softc *sc = device_private(dev);
if (sc->slaveconfig) {
/* allow bus master to free its bus ressources */
/* allow bus master to free its bus resources */
(*sc->slaveconfig)(device_parent(dev), 0);
}