diff options
Diffstat (limited to 'sys/arch/sgi/dev')
-rw-r--r-- | sys/arch/sgi/dev/if_mec.c | 4 | ||||
-rw-r--r-- | sys/arch/sgi/dev/mavb.c | 4 | ||||
-rw-r--r-- | sys/arch/sgi/dev/mkbc.c | 4 | ||||
-rw-r--r-- | sys/arch/sgi/dev/power.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/sgi/dev/if_mec.c b/sys/arch/sgi/dev/if_mec.c index 8475133d729..117470982b7 100644 --- a/sys/arch/sgi/dev/if_mec.c +++ b/sys/arch/sgi/dev/if_mec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_mec.c,v 1.37 2017/01/22 10:17:37 dlg Exp $ */ +/* $OpenBSD: if_mec.c,v 1.38 2018/12/03 13:46:30 visa Exp $ */ /* $NetBSD: if_mec_mace.c,v 1.5 2004/08/01 06:36:36 tsutsui Exp $ */ /* @@ -467,7 +467,7 @@ mec_attach(struct device *parent, struct device *self, void *aux) /* Establish interrupt handler. */ macebus_intr_establish(maa->maa_intr, maa->maa_mace_intr, - IST_EDGE, IPL_NET, mec_intr, sc, sc->sc_dev.dv_xname); + IPL_NET, mec_intr, sc, sc->sc_dev.dv_xname); return; diff --git a/sys/arch/sgi/dev/mavb.c b/sys/arch/sgi/dev/mavb.c index 11a54d6282e..939d63dc51d 100644 --- a/sys/arch/sgi/dev/mavb.c +++ b/sys/arch/sgi/dev/mavb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mavb.c,v 1.20 2016/09/19 06:46:43 ratchov Exp $ */ +/* $OpenBSD: mavb.c,v 1.21 2018/12/03 13:46:30 visa Exp $ */ /* * Copyright (c) 2005 Mark Kettenis @@ -1101,7 +1101,7 @@ mavb_attach(struct device *parent, struct device *self, void *aux) /* Establish interrupt. */ macebus_intr_establish(maa->maa_intr, maa->maa_mace_intr, - IST_EDGE, IPL_AUDIO, mavb_intr, sc, sc->sc_dev.dv_xname); + IPL_AUDIO, mavb_intr, sc, sc->sc_dev.dv_xname); /* 2. Assert the RESET signal. */ bus_space_write_8(sc->sc_st, sc->sc_sh, MAVB_CONTROL, diff --git a/sys/arch/sgi/dev/mkbc.c b/sys/arch/sgi/dev/mkbc.c index cb3fe051241..982b5cd4171 100644 --- a/sys/arch/sgi/dev/mkbc.c +++ b/sys/arch/sgi/dev/mkbc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mkbc.c,v 1.13 2015/02/11 07:05:39 dlg Exp $ */ +/* $OpenBSD: mkbc.c,v 1.14 2018/12/03 13:46:30 visa Exp $ */ /* * Copyright (c) 2006, 2007, Joel Sing @@ -287,7 +287,7 @@ mkbc_attach(struct device *parent, struct device *self, void *aux) /* Establish interrupt handler. */ if (macebus_intr_establish(maa->maa_intr, maa->maa_mace_intr, - IST_EDGE, IPL_TTY, mkbcintr, msc, sc->sc_dv.dv_xname)) + IPL_TTY, mkbcintr, msc, sc->sc_dv.dv_xname)) printf("\n"); else printf(": unable to establish interrupt\n"); diff --git a/sys/arch/sgi/dev/power.c b/sys/arch/sgi/dev/power.c index 635c2700baa..8b38f7a20cb 100644 --- a/sys/arch/sgi/dev/power.c +++ b/sys/arch/sgi/dev/power.c @@ -1,4 +1,4 @@ -/* $OpenBSD: power.c,v 1.15 2014/07/11 08:18:30 guenther Exp $ */ +/* $OpenBSD: power.c,v 1.16 2018/12/03 13:46:30 visa Exp $ */ /* * Copyright (c) 2007 Jasper Lievisse Adriaanse <jasper@openbsd.org> @@ -64,7 +64,7 @@ power_macebus_attach(struct device *parent, struct device *self, void *aux) /* Establish interrupt handler. */ if (macebus_intr_establish(maa->maa_intr, maa->maa_mace_intr, - IST_EDGE, IPL_TTY, power_intr, self, self->dv_xname)) + IPL_TTY, power_intr, self, self->dv_xname)) printf("\n"); else printf(": unable to establish interrupt!\n"); |