summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormsaitoh <msaitoh@NetBSD.org>2009-03-05 01:38:12 +0000
committermsaitoh <msaitoh@NetBSD.org>2009-03-05 01:38:12 +0000
commitf9ccf64b657317be00e75d366972ca3f3eb6980f (patch)
tree213dd14f82ad37806f41185a6d30f840b6ebc3af /sys/dev
parent1c655cd5413c5d226b6129f514103cf3e6399cb7 (diff)
Fix typo(s/interupt/interrupt/)
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/auixp.c6
-rw-r--r--sys/dev/pci/pccbb.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/pci/auixp.c b/sys/dev/pci/auixp.c
index 9dc11d35a08..a4370f3ec13 100644
--- a/sys/dev/pci/auixp.c
+++ b/sys/dev/pci/auixp.c
@@ -1,4 +1,4 @@
-/* $NetBSD: auixp.c,v 1.28 2008/04/10 19:13:36 cegger Exp $ */
+/* $NetBSD: auixp.c,v 1.29 2009/03/05 01:38:12 msaitoh Exp $ */
/*
* Copyright (c) 2004, 2005 Reinoud Zandijk <reinoud@netbsd.org>
@@ -50,7 +50,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: auixp.c,v 1.28 2008/04/10 19:13:36 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: auixp.c,v 1.29 2009/03/05 01:38:12 msaitoh Exp $");
#include <sys/types.h>
#include <sys/errno.h>
@@ -948,7 +948,7 @@ auixp_intr(void *softc)
detected_codecs = status & CODEC_CHECK_BITS;
sc->sc_codec_not_ready_bits |= detected_codecs;
- /* disable detected interupt sources */
+ /* disable detected interrupt sources */
enable = bus_space_read_4(iot, ioh, ATI_REG_IER);
enable &= ~detected_codecs;
bus_space_write_4(iot, ioh, ATI_REG_IER, enable);
diff --git a/sys/dev/pci/pccbb.c b/sys/dev/pci/pccbb.c
index 1bf8f1c0088..7e467fc96bc 100644
--- a/sys/dev/pci/pccbb.c
+++ b/sys/dev/pci/pccbb.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pccbb.c,v 1.183 2009/02/13 22:39:37 bouyer Exp $ */
+/* $NetBSD: pccbb.c,v 1.184 2009/03/05 01:38:12 msaitoh Exp $ */
/*
* Copyright (c) 1998, 1999 and 2000
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pccbb.c,v 1.183 2009/02/13 22:39:37 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pccbb.c,v 1.184 2009/03/05 01:38:12 msaitoh Exp $");
/*
#define CBB_DEBUG
@@ -946,7 +946,7 @@ pccbb_intrinit(struct pccbb_softc *sc)
/*
* XXX pccbbintr should be called under the priority lower
- * than any other hard interupts.
+ * than any other hard interrupts.
*/
KASSERT(sc->sc_ih == NULL);
sc->sc_ih = pci_intr_establish(pc, ih, IPL_BIO, pccbbintr, sc);