PERFORCE change 55057 for review

Juli Mallett jmallett at FreeBSD.org
Wed Jun 16 01:53:01 GMT 2004


http://perforce.freebsd.org/chv.cgi?CH=55057

Change 55057 by jmallett at 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);


More information about the p4-projects mailing list