public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] mfd: intel-lpss: Fix IRQ check
@ 2023-11-01  6:26 Chen Ni
  2023-11-01  7:03 ` Mika Westerberg
  0 siblings, 1 reply; 8+ messages in thread
From: Chen Ni @ 2023-11-01  6:26 UTC (permalink / raw)
  To: lee, andriy.shevchenko, mika.westerberg; +Cc: linux-kernel, Chen Ni

platform_get_irq() returns a negative error code to indicating an
error. So in intel_lpss_probe() the unset / erroneous IRQ should be
returned as is.

Fixes: 4b45efe85263 ("mfd: Add support for Intel Sunrisepoint LPSS devices")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
Changelog:

v1 -> v2:
1. Update commit message
2. Fix IRQ check in intel_lpcc_probe()
---
 drivers/mfd/intel-lpss.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/mfd/intel-lpss.c b/drivers/mfd/intel-lpss.c
index 9591b354072a..4c9d0222751a 100644
--- a/drivers/mfd/intel-lpss.c
+++ b/drivers/mfd/intel-lpss.c
@@ -378,9 +378,12 @@ int intel_lpss_probe(struct device *dev,
 	struct intel_lpss *lpss;
 	int ret;
 
-	if (!info || !info->mem || info->irq <= 0)
+	if (!info || !info->mem)
 		return -EINVAL;
 
+	if (info->irq < 0)
+		return info->irq;
+
 	lpss = devm_kzalloc(dev, sizeof(*lpss), GFP_KERNEL);
 	if (!lpss)
 		return -ENOMEM;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-11-03 14:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-01  6:26 [PATCH v2] mfd: intel-lpss: Fix IRQ check Chen Ni
2023-11-01  7:03 ` Mika Westerberg
2023-11-01  9:38   ` Andy Shevchenko
2023-11-01  9:42     ` Andy Shevchenko
2023-11-01 10:47     ` Mika Westerberg
2023-11-02 12:38       ` Andy Shevchenko
2023-11-03  6:41         ` Mika Westerberg
2023-11-03 14:58           ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox