[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20110728100648.GD31473@n2100.arm.linux.org.uk>
Date: Thu, 28 Jul 2011 11:06:48 +0100
From: Russell King - ARM Linux <linux@....linux.org.uk>
To: Tommy Lin <tommy.lin.1101@...il.com>
Cc: Anton Vorontsov <avorontsov@...sta.com>,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 3/3] arch: arm: mach-cns3xxx: Add external interrupt
pin demo program
On Fri, Jul 29, 2011 at 01:17:55AM +0800, Tommy Lin wrote:
> +#include <mach/gpio.h>
Need I mention it...
> +static irqreturn_t cns3xxx_ext_intr1_handler(int irq, void *dev_id)
> +{
> + int value;
> +
> + value = gpio_get_value(led_D6);
> +
> + disable_irq_nosync(irq);
> +
> + gpio_set_value(led_D6, !value);
> +
> + enable_irq(irq);
Why do you need the disable_irq/enable_irq ? The interrupt you're
dealing with will already be masked by the core genirq code.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists