diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-07-17 10:40:51 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-07-17 10:40:51 +0000 |
commit | 16950193610ecea6de411a0ec172a719f5a89980 (patch) | |
tree | 0d97f00806502969d6b03ce6978ac249ddd3c01a /sys/arch/sparc/dev | |
parent | 4c37cb1a6894666942cc4883922e5c8c9aee1153 (diff) |
Do not claim this driver uses a soft interrupt in dmesg since it is not true.
Diffstat (limited to 'sys/arch/sparc/dev')
-rw-r--r-- | sys/arch/sparc/dev/cs4231.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/cs4231.c b/sys/arch/sparc/dev/cs4231.c index 58cf6c87803..b2a91315081 100644 --- a/sys/arch/sparc/dev/cs4231.c +++ b/sys/arch/sparc/dev/cs4231.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cs4231.c,v 1.24 2005/07/09 22:23:13 miod Exp $ */ +/* $OpenBSD: cs4231.c,v 1.25 2005/07/17 10:40:50 miod Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -240,7 +240,7 @@ cs4231_attach(parent, self, aux) intr_establish(ca->ca_ra.ra_intr[0].int_pri, &sc->sc_ih, IPL_AUHARD, self->dv_xname); - printf(" pri %d, softpri %d\n", pri, IPL_AUSOFT); + printf(" pri %d\n", pri); audio_attach_mi(&cs4231_sa_hw_if, sc, &sc->sc_dev); |