From: Guangqing Zhu Date: Thu, 15 Apr 2021 07:38:29 +0000 (+0800) Subject: ASoC: codecs: wcd934x: Fix missing IRQF_ONESHOT as only threaded handler X-Git-Tag: v5.13-rc1~87^2~19^2^2~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=22ff9c4230bd09ade8971c05463b90ec1d513245;p=thirdparty%2Fkernel%2Flinux.git ASoC: codecs: wcd934x: Fix missing IRQF_ONESHOT as only threaded handler Coccinelle noticed: sound/soc/codecs/wcd934x.c:5041:7-32: ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT Signed-off-by: Guangqing Zhu Reviewed-by: Srinivas Kandagatla Link: https://lore.kernel.org/r/20210415073829.22750-1-zhuguangqing83@gmail.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wcd934x.c b/sound/soc/codecs/wcd934x.c index 5fe403307b728..cddc49bbb7f69 100644 --- a/sound/soc/codecs/wcd934x.c +++ b/sound/soc/codecs/wcd934x.c @@ -5040,7 +5040,7 @@ static int wcd934x_codec_probe(struct platform_device *pdev) ret = devm_request_threaded_irq(dev, irq, NULL, wcd934x_slim_irq_handler, - IRQF_TRIGGER_RISING, + IRQF_TRIGGER_RISING | IRQF_ONESHOT, "slim", wcd); if (ret) { dev_err(dev, "Failed to request slimbus irq\n");