summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2022-02-21 08:50:19 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2022-02-21 08:50:19 +0000
commit2ce77ad5f4229164f68da219543e5c3514dc5c83 (patch)
tree79f64b6d49a3c7559f2ff60def8bb3cedc9b548e
parent8ab93005a6e5a32e13b8b648da73f2cdea25439b (diff)
splitted -> split, necesssary -> necessary
-rw-r--r--sys/dev/pci/auixp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/auixp.c b/sys/dev/pci/auixp.c
index a69a66f1a64..66a929bf66d 100644
--- a/sys/dev/pci/auixp.c
+++ b/sys/dev/pci/auixp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auixp.c,v 1.45 2022/02/16 06:21:18 anton Exp $ */
+/* $OpenBSD: auixp.c,v 1.46 2022/02/21 08:50:18 jsg Exp $ */
/* $NetBSD: auixp.c,v 1.9 2005/06/27 21:13:09 thorpej Exp $ */
/*
@@ -263,7 +263,7 @@ auixp_commit_settings(void *hdl)
value &= ~ATI_REG_CMD_SPDF_CONFIG_MASK;
value |= ATI_REG_CMD_SPDF_CONFIG_34; /* NetBSD AC'97 default */
- /* XXX this is probably not necessary unless splitted XXX */
+ /* XXX this is probably not necessary unless split XXX */
value &= ~ATI_REG_CMD_INTERLEAVE_SPDF;
if (params->precision <= 16)
value |= ATI_REG_CMD_INTERLEAVE_SPDF;
@@ -1372,7 +1372,7 @@ auixp_enable_dma(struct auixp_softc *sc, struct auixp_dma *dma)
iot = sc->sc_iot;
ioh = sc->sc_ioh;
- /* lets not stress the DMA engine more than necesssary */
+ /* lets not stress the DMA engine more than necessary */
value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
if (!(value & dma->dma_enable_bit)) {
value |= dma->dma_enable_bit;