diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-09 17:32:28 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-09 17:32:28 +0000 |
commit | 5b7265cc919c67ef59625027826fb5ed597a57d4 (patch) | |
tree | eec509ec955c24704c93af95e8afe7cb70355f70 /sys/arch/hp300/dev/dca.c | |
parent | c4819adfb371c4b8ea161ad8d6188da1738027cd (diff) |
Get rid of IPL_TTYNOBUF, it was handled exactly like IPL_TTY for years.
Diffstat (limited to 'sys/arch/hp300/dev/dca.c')
-rw-r--r-- | sys/arch/hp300/dev/dca.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/hp300/dev/dca.c b/sys/arch/hp300/dev/dca.c index a9c976b5297..2ff36491370 100644 --- a/sys/arch/hp300/dev/dca.c +++ b/sys/arch/hp300/dev/dca.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dca.c,v 1.31 2006/01/01 11:59:37 miod Exp $ */ +/* $OpenBSD: dca.c,v 1.32 2007/11/09 17:32:25 miod Exp $ */ /* $NetBSD: dca.c,v 1.35 1997/05/05 20:58:18 thorpej Exp $ */ /* @@ -235,8 +235,7 @@ dcaattach(parent, self, aux) sc->sc_isr.isr_func = dcaintr; sc->sc_isr.isr_arg = sc; sc->sc_isr.isr_ipl = ipl; - sc->sc_isr.isr_priority = - (sc->sc_flags & DCA_HASFIFO) ? IPL_TTY : IPL_TTYNOBUF; + sc->sc_isr.isr_priority = IPL_TTY; dio_intr_establish(&sc->sc_isr, self->dv_xname); sc->sc_flags |= DCA_ACTIVE; |