Date: Wed, 16 Jun 2004 01:52:58 GMT From: Juli Mallett <jmallett@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 55057 for review Message-ID: <200406160152.i5G1qwfk047296@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=55057 Change 55057 by jmallett@jmallett_oingo on 2004/06/16 01:52:26 flags. Affected files ... .. //depot/projects/mips/sys/mips/mips/clock_r4k.c#4 edit Differences ... ==== //depot/projects/mips/sys/mips/mips/clock_r4k.c#4 (text+ko) ==== @@ -123,8 +123,9 @@ device_printf(dev, "failed to allocate irq\n"); return (ENXIO); } - error = bus_setup_intr(dev, irq, INTR_TYPE_CLK, r4k_clock_intr, NULL, - NULL); + error = bus_setup_intr(dev, irq, + INTR_TYPE_CLK | INTR_MPSAFE | INTR_FAST, + r4k_clock_intr, NULL, NULL); if (error != 0) { device_printf(dev, "bus_setup_intr returned %d\n", error); return (error);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200406160152.i5G1qwfk047296>