s/spcae/space/ in comment and error messages.

This commit is contained in:
andvar 2022-06-08 23:12:27 +00:00
parent 789d65f63b
commit 074ab790a2
3 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: am335x_trng.c,v 1.5 2022/03/19 11:55:03 riastradh Exp $ */
/* $NetBSD: am335x_trng.c,v 1.6 2022/06/08 23:12:27 andvar Exp $ */
/*-
* Copyright (c) 2015 Jared D. McNeill <jmcneill@invisible.ca>
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: am335x_trng.c,v 1.5 2022/03/19 11:55:03 riastradh Exp $");
__KERNEL_RCSID(0, "$NetBSD: am335x_trng.c,v 1.6 2022/06/08 23:12:27 andvar Exp $");
#include "opt_omap.h"
@ -94,7 +94,7 @@ trng_attach(device_t parent, device_t self, void *aux)
sc->sc_iot = obio->obio_iot;
if (bus_space_map(obio->obio_iot, obio->obio_addr, obio->obio_size,
0, &sc->sc_ioh) != 0) {
aprint_error(": couldn't map address spcae\n");
aprint_error(": couldn't map address space\n");
return;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: omap_edma.c,v 1.6 2022/05/21 19:07:23 andvar Exp $ */
/* $NetBSD: omap_edma.c,v 1.7 2022/06/08 23:12:27 andvar Exp $ */
/*-
* Copyright (c) 2014 Jared D. McNeill <jmcneill@invisible.ca>
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: omap_edma.c,v 1.6 2022/05/21 19:07:23 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: omap_edma.c,v 1.7 2022/06/08 23:12:27 andvar Exp $");
#include "opt_omap.h"
@ -146,7 +146,7 @@ edma_attach(device_t parent, device_t self, void *aux)
mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_VM);
if (bus_space_map(sc->sc_iot, mb->mb_iobase, mb->mb_iosize,
0, &sc->sc_ioh) != 0) {
aprint_error(": couldn't map address spcae\n");
aprint_error(": couldn't map address space\n");
return;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: ptrace.h,v 1.74 2020/11/04 18:32:12 pgoyette Exp $ */
/* $NetBSD: ptrace.h,v 1.75 2022/06/08 23:12:27 andvar Exp $ */
/*-
* Copyright (c) 1984, 1993
@ -135,7 +135,7 @@ struct ptrace_io_desc {
/* piod_op */
#define PIOD_READ_D 1 /* read from D space */
#define PIOD_WRITE_D 2 /* write to D spcae */
#define PIOD_WRITE_D 2 /* write to D space */
#define PIOD_READ_I 3 /* read from I space */
#define PIOD_WRITE_I 4 /* write to I space */
#define PIOD_READ_AUXV 5 /* Read from aux array */