From ae4deb7aadbe0e6c12eb264f6a7c19fd3fd582fc Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 6 Jan 2011 21:08:06 +0000 Subject: Remove bogus usage of INTR_FAST. "Fast" interrupts are now indicated by registering a filter handler rather than a threaded handler. Also remove a bogus use of INTR_MPSAFE for a filter. --- sys/arm/s3c2xx0/s3c24x0_clk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/arm/s3c2xx0') diff --git a/sys/arm/s3c2xx0/s3c24x0_clk.c b/sys/arm/s3c2xx0/s3c24x0_clk.c index 33b7ae2..35ce349 100644 --- a/sys/arm/s3c2xx0/s3c24x0_clk.c +++ b/sys/arm/s3c2xx0/s3c24x0_clk.c @@ -200,7 +200,7 @@ cpu_initclocks(void) if (!irq) panic("Unable to allocate the clock irq handler.\n"); - err = bus_setup_intr(dev, irq, INTR_TYPE_CLK | INTR_FAST, + err = bus_setup_intr(dev, irq, INTR_TYPE_CLK, clock_intr, NULL, NULL, &ihl); if (err != 0) panic("Unable to setup the clock irq handler.\n"); -- cgit v1.1