summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede2017-11-22 16:50:33 +0100
committerAndy Shevchenko2017-11-27 12:39:11 +0100
commit2448f44f31625610ddeafc9c7642da8a78d93c7b (patch)
tree07f695b8ea62c30a2041e66c4037634bf7d19814
parentplatform/x86: Add support for Dollar Cove TI power button (diff)
downloadkernel-qcow2-linux-2448f44f31625610ddeafc9c7642da8a78d93c7b.tar.gz
kernel-qcow2-linux-2448f44f31625610ddeafc9c7642da8a78d93c7b.tar.xz
kernel-qcow2-linux-2448f44f31625610ddeafc9c7642da8a78d93c7b.zip
platform/x86: intel_int0002_vgpio: Remove IRQF_NO_THREAD irq flag
Remove the IRQF_NO_THREAD irq flag, there is no need for it and it breaks irq-sharing with the "acpi" irq when passing "threadirqs" on the kernel cmdline, as the acpi/osl.c code does not pass IRQF_NO_THREAD. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reported-by: Oleksandr Natalenko <oleksandr@natalenko.name> Tested-by: Oleksandr Natalenko <oleksandr@natalenko.name> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r--drivers/platform/x86/intel_int0002_vgpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel_int0002_vgpio.c b/drivers/platform/x86/intel_int0002_vgpio.c
index f7b67e898abc..a473dc51b18d 100644
--- a/drivers/platform/x86/intel_int0002_vgpio.c
+++ b/drivers/platform/x86/intel_int0002_vgpio.c
@@ -180,7 +180,7 @@ static int int0002_probe(struct platform_device *pdev)
* to gpiochip_set_chained_irqchip, because the irq is shared.
*/
ret = devm_request_irq(dev, irq, int0002_irq,
- IRQF_SHARED | IRQF_NO_THREAD, "INT0002", chip);
+ IRQF_SHARED, "INT0002", chip);
if (ret) {
dev_err(dev, "Error requesting IRQ %d: %d\n", irq, ret);
return ret;