diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2012-03-31 20:20:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2012-03-31 20:20:33 +0000 |
commit | 931239e60e5aa6d2a6e5de89d4f2ae2c14b3b91d (patch) | |
tree | cfce712fb6b6f51dae38dc4d38eb93ffbc3afd19 /sys | |
parent | a50a53c9456756b4d623f0f7e7f7a0278d9c488b (diff) |
softintr_establish() takes IPL_xxx, not SI_xxx (harmless here since they turned
out to be the same value).
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sgi/hpc/zs.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); /* |