summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2007-04-14 23:35:36 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2007-04-14 23:35:36 +0000
commit97af683d4fa180dfabdcde18e514c9399a0c4a1a (patch)
treeee1ae63872c93152e2507a702eda52482b650100
parenta8d70ab4160432ccf02615121fc5c338a937dbfe (diff)
replace IPL_BIO with IPL_NET. vic(4) is a networking driver, not block
I/O... ;) ok dlg@
-rw-r--r--sys/dev/pci/if_vic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_vic.c b/sys/dev/pci/if_vic.c
index 605b31842f8..7474ac6f387 100644
--- a/sys/dev/pci/if_vic.c
+++ b/sys/dev/pci/if_vic.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vic.c,v 1.39 2007/01/30 09:54:24 reyk Exp $ */
+/* $OpenBSD: if_vic.c,v 1.40 2007/04/14 23:35:35 reyk Exp $ */
/*
* Copyright (c) 2006 Reyk Floeter <reyk@openbsd.org>
@@ -434,8 +434,8 @@ vic_map_pci(struct vic_softc *sc, struct pci_attach_args *pa)
}
intrstr = pci_intr_string(pa->pa_pc, ih);
- sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO,
- vic_intr, sc, DEVNAME(sc));
+ sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_NET,
+ vic_intr, sc, DEVNAME(sc));
if (sc->sc_ih == NULL) {
printf(": unable to map interrupt%s%s\n",
intrstr == NULL ? "" : " at ",