regmap: kill off set_irq_flags usage
authorRob Herring <robh@kernel.org>
Tue, 9 Jun 2015 18:26:28 +0000 (13:26 -0500)
committerMark Brown <broonie@kernel.org>
Tue, 9 Jun 2015 19:08:57 +0000 (20:08 +0100)
commite723f2ceb1ab571c660b1a1db31cb71aa2c0b29d
tree7c90fc2806c88f36a5052b36df416b53cf64b835
parent7043f5fb20b564f547d187f58725dbe75b942535
regmap: kill off set_irq_flags usage

set_irq_flags is ARM specific with custom flags which have genirq
equivalents. Convert drivers to use the genirq interfaces directly, so we
can kill off set_irq_flags. The translation of flags is as follows:

IRQF_VALID -> !IRQ_NOREQUEST
IRQF_PROBE -> !IRQ_NOPROBE
IRQF_NOAUTOEN -> IRQ_NOAUTOEN

For IRQs managed by an irqdomain, the irqdomain core code handles clearing
and setting IRQ_NOREQUEST already, so there is no need to do this in
.map() functions and we can simply remove the set_irq_flags calls. Some
users also set IRQ_NOPROBE and this has been maintained although it is not
clear that is really needed. There appears to be a great deal of blind
copy and paste of this code.

Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/base/regmap/regmap-irq.c
This page took 0.063223 seconds and 5 git commands to generate.