From 931239e60e5aa6d2a6e5de89d4f2ae2c14b3b91d Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Sat, 31 Mar 2012 20:20:33 +0000 Subject: softintr_establish() takes IPL_xxx, not SI_xxx (harmless here since they turned out to be the same value). --- sys/arch/sgi/hpc/zs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/arch/sgi') diff --git a/sys/arch/sgi/hpc/zs.c b/sys/arch/sgi/hpc/zs.c index c8ce8b74102..63150d3867b 100644 --- a/sys/arch/sgi/hpc/zs.c +++ b/sys/arch/sgi/hpc/zs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zs.c,v 1.1 2012/03/28 20:44:23 miod Exp $ */ +/* $OpenBSD: zs.c,v 1.2 2012/03/31 20:20:32 miod Exp $ */ /* $NetBSD: zs.c,v 1.37 2011/02/20 07:59:50 matt Exp $ */ /*- @@ -288,7 +288,7 @@ zs_hpc_attach(struct device *parent, struct device *self, void *aux) } - zsc->sc_si = softintr_establish(SI_SOFTTTY, zssoft, zsc); + zsc->sc_si = softintr_establish(IPL_SOFTTTY, zssoft, zsc); int2_intr_establish(haa->ha_irq, IPL_TTY, zshard, zsc, self->dv_xname); /* -- cgit v1.2.3