Skip to content

Commit b0d5d0f

Browse files
committed
Merge tag 'pinctrl-v6.8-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl
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
2 parents 0473719 + 4451e8e commit b0d5d0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/pinctrl-amd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ static int amd_gpio_probe(struct platform_device *pdev)
11591159
}
11601160

11611161
ret = devm_request_irq(&pdev->dev, gpio_dev->irq, amd_gpio_irq_handler,
1162-
IRQF_SHARED, KBUILD_MODNAME, gpio_dev);
1162+
IRQF_SHARED | IRQF_ONESHOT, KBUILD_MODNAME, gpio_dev);
11631163
if (ret)
11641164
goto out2;
11651165

0 commit comments

Comments
 (0)