public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] thermal: armada: fix return value check in armada_thermal_probe_legacy()
@ 2018-07-30  2:42 Wei Yongjun
  2018-07-30  6:18 ` Daniel Lezcano
  2018-07-30  7:35 ` Miquel Raynal
  0 siblings, 2 replies; 3+ messages in thread
From: Wei Yongjun @ 2018-07-30  2:42 UTC (permalink / raw)
  To: kernel-janitors

In case of error, the function platform_get_resource() returns NULL
pointer not ERR_PTR(). The IS_ERR() test in the return value check
should be replaced with NULL test.

Fixes: 175637792d45 ("thermal: armada: convert driver to syscon register accesses")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 drivers/thermal/armada_thermal.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c
index 8de4ba5..6782814 100644
--- a/drivers/thermal/armada_thermal.c
+++ b/drivers/thermal/armada_thermal.c
@@ -526,8 +526,8 @@ static int armada_thermal_probe_legacy(struct platform_device *pdev,
 
 	/* First memory region points towards the status register */
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	if (IS_ERR(res))
-		return PTR_ERR(res);
+	if (!res)
+		return -EINVAL;
 
 	/*
 	 * Edit the resource start address and length to map over all the


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

end of thread, other threads:[~2018-07-30  7:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-30  2:42 [PATCH -next] thermal: armada: fix return value check in armada_thermal_probe_legacy() Wei Yongjun
2018-07-30  6:18 ` Daniel Lezcano
2018-07-30  7:35 ` Miquel Raynal

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