Fix few more typos in comments and log message:

s/butoon/button/
s/BUTTOM/BOTTOM/
s/communicaiton/communication/
s/recevice/receive/
s/regiion/region/
triaxx-drm
andvar 2024-02-11 10:36:40 +00:00
parent c05ba3d507
commit 48491f9819
7 changed files with 18 additions and 18 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: session.h,v 1.1 2022/01/22 07:53:06 pho Exp $ */
/* $NetBSD: session.h,v 1.2 2024/02/11 10:36:40 andvar Exp $ */
/*
* Copyright (c) 2021 The NetBSD Foundation, Inc.
@ -51,7 +51,7 @@ struct fuse_session;
/* Get a session from a fuse object. Appeared on FUSE 2.6. */
struct fuse_session *fuse_get_session(struct fuse *f);
/* Get the file descriptor for communicaiton with kernel. Appeared on
/* Get the file descriptor for communication with kernel. Appeared on
* FUSE 3.0. */
int fuse_session_fd(struct fuse_session *se);

View File

@ -1,4 +1,4 @@
# $NetBSD: KOI8-C%UCS.src,v 1.3 2007/03/07 15:12:41 tnozaki Exp $
# $NetBSD: KOI8-C%UCS.src,v 1.4 2024/02/11 10:36:40 andvar Exp $
TYPE ROWCOL
NAME "KOI8-C/UCS"
@ -49,7 +49,7 @@ BEGIN_MAP
0x98 = 0x04B6 # CYRILLIC CAPITAL LETTER CHE WITH DESCENDER
0x99 = 0x04B8 # CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE
0x9A = 0x04BA # CYRILLIC CAPITAL LETTER SHHA
0x9B = 0x2321 # BUTTOM HALF INTEGRAL
0x9B = 0x2321 # BOTTOM HALF INTEGRAL
0x9C = 0x04D8 # CYRILLIC CAPITAL LETTER SCHWA
0x9D = 0x04E2 # CYRILLIC CAPITAL LETTER I WITH MACRON
0x9E = 0x04E8 # CYRILLIC CAPITAL LETTER BARRED O

View File

@ -1,4 +1,4 @@
# $NetBSD: UCS%KOI8-C.src,v 1.3 2007/03/07 15:12:41 tnozaki Exp $
# $NetBSD: UCS%KOI8-C.src,v 1.4 2024/02/11 10:36:40 andvar Exp $
TYPE ROWCOL
NAME "UCS/KOI8-C"
@ -85,6 +85,6 @@ BEGIN_MAP
0x04EE = 0x9F # CYRILLIC CAPITAL LETTER U WITH MACRON
0x04EF = 0x8F # CYRILLIC SMALL LETTER U WITH MACRON
0x2116 = 0xB0 # NUMERO SIGN
0x2321 = 0x9B # BUTTOM HALF INTEGRAL
0x2321 = 0x9B # BOTTOM HALF INTEGRAL
0x2580 = 0x8B # UPPER HALF BLOCK
END_MAP

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_space.c,v 1.34 2023/12/20 14:50:02 thorpej Exp $ */
/* $NetBSD: bus_space.c,v 1.35 2024/02/11 10:36:40 andvar Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bus_space.c,v 1.34 2023/12/20 14:50:02 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus_space.c,v 1.35 2024/02/11 10:36:40 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -278,7 +278,7 @@ __bs_map(bus_space_tag_t tx, bus_addr_t bpa, bus_size_t size, int flags,
if ((err = extent_alloc_region(t->extent, bpa, size,
EX_NOWAIT|EX_MALLOCOK))) {
DPRINTF(("\tbus_space_map: "
"extent_alloc_regiion() failed\n"));
"extent_alloc_region() failed\n"));
return (err);
}
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: adb_ktm.c,v 1.6 2022/10/06 19:38:54 andvar Exp $ */
/* $NetBSD: adb_ktm.c,v 1.7 2024/02/11 10:36:40 andvar Exp $ */
/*-
* Copyright (c) 2019 Michael Lorenz
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: adb_ktm.c,v 1.6 2022/10/06 19:38:54 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: adb_ktm.c,v 1.7 2024/02/11 10:36:40 andvar Exp $");
#include <sys/param.h>
#include <sys/device.h>
@ -188,7 +188,7 @@ ktm_init(struct ktm_softc *sc)
* byte 1 assigns what which button does
- 0x08 - button 1 - 1, button 2 - nothing
- 0x09 - both buttons - 1
- 0x0a - butoon 1 - 1, button 2 - toggle 1
- 0x0a - button 1 - 1, button 2 - toggle 1
- 0x0b - button 1 - 1, button 2 - nothing
- 0x0c - button 1 - 1, button 2 - 2
- 0x0e - button 1 - 1, button 2 - 3

View File

@ -1,4 +1,4 @@
/* $NetBSD: adb_ms.c,v 1.21 2021/08/07 16:19:09 thorpej Exp $ */
/* $NetBSD: adb_ms.c,v 1.22 2024/02/11 10:36:40 andvar Exp $ */
/*
* Copyright (C) 1998 Colin Wood
@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: adb_ms.c,v 1.21 2021/08/07 16:19:09 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: adb_ms.c,v 1.22 2024/02/11 10:36:40 andvar Exp $");
#include <sys/param.h>
#include <sys/device.h>
@ -341,7 +341,7 @@ adbms_init_turbo(struct adbms_softc *sc)
* byte 1 assigns what which button does
- 0x08 - button 1 - 1, button 2 - nothing
- 0x09 - both buttons - 1
- 0x0a - butoon 1 - 1, button 2 - toggle 1
- 0x0a - button 1 - 1, button 2 - toggle 1
- 0x0b - button 1 - 1, button 2 - nothing
- 0x0c - button 1 - 1, button 2 - 2
- 0x0e - button 1 - 1, button 2 - 3

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_ray.c,v 1.99 2022/05/22 11:27:35 andvar Exp $ */
/* $NetBSD: if_ray.c,v 1.100 2024/02/11 10:36:40 andvar Exp $ */
/*
* Copyright (c) 2000 Christian E. Hopps
@ -57,7 +57,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_ray.c,v 1.99 2022/05/22 11:27:35 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_ray.c,v 1.100 2024/02/11 10:36:40 andvar Exp $");
#include "opt_inet.h"
@ -1270,7 +1270,7 @@ ray_intr_start(struct ray_softc *sc)
}
/*
* recevice a packet from the card
* receive a packet from the card
*/
static void
ray_recv(struct ray_softc *sc, bus_size_t ccs)