diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-02-13 21:28:20 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-02-13 21:28:20 +0000 |
commit | 6171bf298fd6810b8abe328445ff76c6fb74efbb (patch) | |
tree | ec322f223b9e362342e7d2f29de4309516a80ab3 /sys/arch/hppa/gsc/osiop_gsc.c | |
parent | 6c7315dce09c1b5d49d79b76139635d743a6b541 (diff) |
order irq,pri args to gsc_intr_establish() the way less confusing compared to other trolley busses around ...
Diffstat (limited to 'sys/arch/hppa/gsc/osiop_gsc.c')
-rw-r--r-- | sys/arch/hppa/gsc/osiop_gsc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/gsc/osiop_gsc.c b/sys/arch/hppa/gsc/osiop_gsc.c index a674c62c21d..f9b879148a0 100644 --- a/sys/arch/hppa/gsc/osiop_gsc.c +++ b/sys/arch/hppa/gsc/osiop_gsc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: osiop_gsc.c,v 1.9 2004/02/13 21:09:42 mickey Exp $ */ +/* $OpenBSD: osiop_gsc.c,v 1.10 2004/02/13 21:28:19 mickey Exp $ */ /* $NetBSD: osiop_gsc.c,v 1.6 2002/10/02 05:17:50 thorpej Exp $ */ /* @@ -158,8 +158,8 @@ osiop_gsc_attach(parent, self, aux) #endif /* OSIOP_DEBUG */ osiop_attach(sc); - (void)gsc_intr_establish((struct gsc_softc *)parent, IPL_BIO, - ga->ga_irq, osiop_gsc_intr, sc, sc->sc_dev.dv_xname); + (void)gsc_intr_establish((struct gsc_softc *)parent, + ga->ga_irq, IPL_BIO, osiop_gsc_intr, sc, sc->sc_dev.dv_xname); } /* |