summaryrefslogtreecommitdiff
path: root/sys/dev/pci/ncr.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-27 22:06:49 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-27 22:06:49 +0000
commit19c4b654cc723df0e419fd9f12197f491b1bc1d4 (patch)
treee1ec3cdc5db2c1ca3593846ae053d0595186ead5 /sys/dev/pci/ncr.c
parent043773b2a500f1f422b5db3eca46befb28d8a7af (diff)
from netbsd:
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/pci/ncr.c')
-rw-r--r--sys/dev/pci/ncr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/ncr.c b/sys/dev/pci/ncr.c
index 62546882165..7570d5b6129 100644
--- a/sys/dev/pci/ncr.c
+++ b/sys/dev/pci/ncr.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: ncr.c,v 1.3 1995/12/01 01:51:21 deraadt Exp $
+** $Id: ncr.c,v 1.4 1995/12/27 22:06:47 deraadt Exp $
**
** Device driver for the NCR 53C810 PCI-SCSI-Controller.
**
@@ -1255,7 +1255,7 @@ static void ncr_attach (pcici_t tag, int unit);
static char ident[] =
- "\n$Id: ncr.c,v 1.3 1995/12/01 01:51:21 deraadt Exp $\n";
+ "\n$Id: ncr.c,v 1.4 1995/12/27 22:06:47 deraadt Exp $\n";
u_long ncr_version = NCR_VERSION * 11
+ (u_long) sizeof (struct ncb) * 7
@@ -3261,7 +3261,7 @@ ncr_attach(parent, self, aux)
if (retval)
return;
- np->sc_ih = pci_map_int(pa->pa_tag, PCI_IPL_BIO, ncr_intr, np);
+ np->sc_ih = pci_map_int(pa->pa_tag, IPL_BIO, ncr_intr, np);
if (np->sc_ih == NULL)
return;