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/ata | |
| 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/ata')
| -rw-r--r-- | sys/dev/ata/wd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ata/wd.c b/sys/dev/ata/wd.c index 90b6f37f56f..bcc4a55d4d9 100644 --- a/sys/dev/ata/wd.c +++ b/sys/dev/ata/wd.c @@ -1,4 +1,4 @@ -/* $NetBSD: wd.c,v 1.142 1995/08/05 23:50:23 mycroft Exp $ */ +/* $NetBSD: wd.c,v 1.143 1995/12/24 02:31:59 mycroft Exp $ */ /* * Copyright (c) 1994, 1995 Charles M. Hannum. All rights reserved. @@ -249,8 +249,8 @@ wdcattach(parent, self, aux) printf("\n"); - wdc->sc_ih = isa_intr_establish(ia->ia_irq, ISA_IST_EDGE, ISA_IPL_BIO, - wdcintr, wdc); + wdc->sc_ih = isa_intr_establish(ia->ia_irq, IST_EDGE, IPL_BIO, wdcintr, + wdc); for (wa.wa_drive = 0; wa.wa_drive < 2; wa.wa_drive++) (void)config_found(self, (void *)&wa, wdprint); |
