summaryrefslogtreecommitdiff
path: root/drivers/soc/ti
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2024-11-04 22:49:44 +0100
committerArnd Bergmann <arnd@arndb.de>2024-11-04 22:49:44 +0100
commit71ad2b07a87c200aba227143ee12d122d9707ba4 (patch)
tree62a50b3c3caf6f0263ce9f83c10a389bb67e29e9 /drivers/soc/ti
parentb8600cba23c33f816aacb54ff13dfe0ff9636504 (diff)
parentd8ee46b226ace0110f82233ba4c06ff1742ae443 (diff)
downloadlwn-71ad2b07a87c200aba227143ee12d122d9707ba4.tar.gz
lwn-71ad2b07a87c200aba227143ee12d122d9707ba4.zip
Merge tag 'omap-for-v6.13/drivers-signed' of https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap into arm/drivers
soc: ti: driver updates for v6.13 * tag 'omap-for-v6.13/drivers-signed' of https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap: thermal/ti-soc-thermal: Fix typos soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() Link: https://lore.kernel.org/r/7hplnaomtt.fsf@baylibre.com Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/soc/ti')
-rw-r--r--drivers/soc/ti/smartreflex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/soc/ti/smartreflex.c b/drivers/soc/ti/smartreflex.c
index 8b197448e81c..ced3a73929e3 100644
--- a/drivers/soc/ti/smartreflex.c
+++ b/drivers/soc/ti/smartreflex.c
@@ -202,10 +202,10 @@ static int sr_late_init(struct omap_sr *sr_info)
if (sr_class->notify && sr_class->notify_flags && sr_info->irq) {
ret = devm_request_irq(&sr_info->pdev->dev, sr_info->irq,
- sr_interrupt, 0, sr_info->name, sr_info);
+ sr_interrupt, IRQF_NO_AUTOEN,
+ sr_info->name, sr_info);
if (ret)
goto error;
- disable_irq(sr_info->irq);
}
return ret;