summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2022-07-21 14:41:59 +0000
committerandvar <andvar@NetBSD.org>2022-07-21 14:41:59 +0000
commit21899292a91d0da02ca427815c2fa9a05460ff58 (patch)
tree0c119360b0c350003668b5514e221322406f8830 /sys/dev
parenteb720ccc1ea417ddbce7ddb94a1afb596cb838a9 (diff)
s/pedning/pending/
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ebus/ebusreg.h4
-rw-r--r--sys/dev/sbus/cs4231_sbus.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ebus/ebusreg.h b/sys/dev/ebus/ebusreg.h
index 264d91013f7..69c1a6daa9f 100644
--- a/sys/dev/ebus/ebusreg.h
+++ b/sys/dev/ebus/ebusreg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: ebusreg.h,v 1.9 2011/03/16 02:34:10 mrg Exp $ */
+/* $NetBSD: ebusreg.h,v 1.10 2022/07/21 14:41:59 andvar Exp $ */
/*
* Copyright (c) 1999 Matthew R. Green
@@ -157,7 +157,7 @@ struct ebus_interrupt_map_mask {
#define EBDMA_BURST_SIZE_16 0x000c0000 /* 11 - 16 words */
#define EBDMA_DIAG_EN 0x00100000 /* enable diag mode */
#define EBDMA_DIS_ERR_PEND 0x00400000 /* disable stop/interrupt
- on error pedning */
+ on error pending */
#define EBDMA_TCI_DIS 0x00800000 /* disable interrupt on TC */
#define EBDMA_EN_NEXT 0x01000000 /* enable next address autoload
(must set EN_CNT too) */
diff --git a/sys/dev/sbus/cs4231_sbus.c b/sys/dev/sbus/cs4231_sbus.c
index 1a2e2aac596..5ed602bd70b 100644
--- a/sys/dev/sbus/cs4231_sbus.c
+++ b/sys/dev/sbus/cs4231_sbus.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cs4231_sbus.c,v 1.52 2019/05/08 13:40:19 isaki Exp $ */
+/* $NetBSD: cs4231_sbus.c,v 1.53 2022/07/21 14:41:59 andvar Exp $ */
/*-
* Copyright (c) 1998, 1999, 2002, 2007 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cs4231_sbus.c,v 1.52 2019/05/08 13:40:19 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cs4231_sbus.c,v 1.53 2022/07/21 14:41:59 andvar Exp $");
#include "audio.h"
#if NAUDIO > 0
@@ -502,7 +502,7 @@ cs4231_sbus_intr(void *arg)
sbsc = arg;
sc = &sbsc->sc_cs4231;
csr = bus_space_read_4(sbsc->sc_bt, sbsc->sc_bh, APC_DMA_CSR);
- if ((csr & APC_INTR_MASK) == 0) /* any interrupt pedning? */
+ if ((csr & APC_INTR_MASK) == 0) /* any interrupt pending? */
return 0;
mutex_spin_enter(&sc->sc_ad1848.sc_intr_lock);