From 0b988ad4808006a53e444f835873b8cb143b1c54 Mon Sep 17 00:00:00 2001 From: andvar Date: Thu, 21 Jul 2022 14:41:59 +0000 Subject: [PATCH] s/pedning/pending/ --- sys/dev/ebus/ebusreg.h | 4 ++-- sys/dev/sbus/cs4231_sbus.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sys/dev/ebus/ebusreg.h b/sys/dev/ebus/ebusreg.h index 264d91013f74..69c1a6daa9fb 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 1a2e2aac5966..5ed602bd70bc 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 -__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);