summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/dev/if_ie.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-09-29 07:35:15 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-09-29 07:35:15 +0000
commit98de1921367f7a5202910626ee67011985fc6238 (patch)
tree78c6738edd0eb52fb6c913736d7913c0c1f0674b /sys/arch/sparc/dev/if_ie.c
parent4ee9b02e4ff2aca8569497a013add163e3752aa0 (diff)
Switch sparc to evcount; ok deraadt@
Diffstat (limited to 'sys/arch/sparc/dev/if_ie.c')
-rw-r--r--sys/arch/sparc/dev/if_ie.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/dev/if_ie.c b/sys/arch/sparc/dev/if_ie.c
index 36ebdc1bdfc..f42747a0f6e 100644
--- a/sys/arch/sparc/dev/if_ie.c
+++ b/sys/arch/sparc/dev/if_ie.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ie.c,v 1.27 2003/11/14 19:05:36 miod Exp $ */
+/* $OpenBSD: if_ie.c,v 1.28 2004/09/29 07:35:11 miod Exp $ */
/* $NetBSD: if_ie.c,v 1.33 1997/07/29 17:55:38 fair Exp $ */
/*-
@@ -669,14 +669,14 @@ ieattach(parent, self, aux)
case BUS_OBIO:
sc->sc_ih.ih_fun = ieintr;
sc->sc_ih.ih_arg = sc;
- intr_establish(pri, &sc->sc_ih, IPL_NET);
+ intr_establish(pri, &sc->sc_ih, IPL_NET, self->dv_xname);
break;
case BUS_VME16:
case BUS_VME32:
sc->sc_ih.ih_fun = ieintr;
sc->sc_ih.ih_arg = sc;
vmeintr_establish(ca->ca_ra.ra_intr[0].int_vec, pri,
- &sc->sc_ih, IPL_NET);
+ &sc->sc_ih, IPL_NET, self->dv_xname);
break;
#endif /* SUN4 */
}