diff options
| author | mycroft <mycroft@NetBSD.org> | 1995-12-24 02:29:35 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1995-12-24 02:29:35 +0000 |
| commit | 3da4b2a160a4a6da74faa992a498b4e4453471c9 (patch) | |
| tree | 1d8c1545a9941d1846bc7133e294bde85cbf142f /sys/dev/isa/rtfps.c | |
| parent | 1ca89b7f9196cda848f1c282e36d81da24d2af6f (diff) | |
The IST_* and IPL_* constants are not bus-specific; don't treat them as such.
Change splimp -> splnet in Ethernet, ARCnet, and FDDI drivers.
Diffstat (limited to 'sys/dev/isa/rtfps.c')
| -rw-r--r-- | sys/dev/isa/rtfps.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/isa/rtfps.c b/sys/dev/isa/rtfps.c index cff8651d628..41cc056332a 100644 --- a/sys/dev/isa/rtfps.c +++ b/sys/dev/isa/rtfps.c @@ -1,4 +1,4 @@ -/* $NetBSD: rtfps.c,v 1.13 1995/06/26 04:12:01 cgd Exp $ */ +/* $NetBSD: rtfps.c,v 1.14 1995/12/24 02:31:48 mycroft Exp $ */ /* * Copyright (c) 1995 Charles Hannum. All rights reserved. @@ -147,8 +147,7 @@ rtfpsattach(parent, self, aux) } } - sc->sc_ih = isa_intr_establish(ia->ia_irq, ISA_IST_EDGE, ISA_IPL_TTY, - rtfpsintr, sc); + sc->sc_ih = isa_intr_establish(ia->ia_irq, IST_EDGE, IPL_TTY, rtfpsintr, sc); } int |
