Commit b0d5d0f7 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull pinctrl fix from Linus Walleij:
 "A single fix for the AMD driver which affects developer laptops, the
  pinctrl/GPIO driver won't probe on some systems"

* tag 'pinctrl-v6.8-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl:
  pinctrl: amd: Add IRQF_ONESHOT to the interrupt request
parents 04737196 4451e8e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1159,7 +1159,7 @@ static int amd_gpio_probe(struct platform_device *pdev)
	}

	ret = devm_request_irq(&pdev->dev, gpio_dev->irq, amd_gpio_irq_handler,
			       IRQF_SHARED, KBUILD_MODNAME, gpio_dev);
			       IRQF_SHARED | IRQF_ONESHOT, KBUILD_MODNAME, gpio_dev);
	if (ret)
		goto out2;