linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] firmware: arm_sdei: Fix return value check in sdei_present_dt()
@ 2018-01-15 10:41 Wei Yongjun
  2018-01-15 10:38 ` James Morse
  2018-01-15 18:17 ` Catalin Marinas
  0 siblings, 2 replies; 3+ messages in thread
From: Wei Yongjun @ 2018-01-15 10:41 UTC (permalink / raw)
  To: James Morse, Catalin Marinas
  Cc: Wei Yongjun, linux-arm-kernel, linux-kernel, kernel-janitors

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

Fixes: 677a60bd2003 ("firmware: arm_sdei: Discover SDEI support via ACPI")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 drivers/firmware/arm_sdei.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/firmware/arm_sdei.c b/drivers/firmware/arm_sdei.c
index 8f6563c..1ea7164 100644
--- a/drivers/firmware/arm_sdei.c
+++ b/drivers/firmware/arm_sdei.c
@@ -1023,7 +1023,7 @@ static bool __init sdei_present_dt(void)
 
 	pdev = of_platform_device_create(np, sdei_driver.driver.name, NULL);
 	of_node_put(np);
-	if (IS_ERR(pdev))
+	if (!pdev)
 		return false;
 
 	return true;

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

end of thread, other threads:[~2018-01-15 18:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-15 10:41 [PATCH -next] firmware: arm_sdei: Fix return value check in sdei_present_dt() Wei Yongjun
2018-01-15 10:38 ` James Morse
2018-01-15 18:17 ` Catalin Marinas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).