[PATCH -next] spmi: pmic-arb: Add check for return value of platform_get_resource_byname

From: Gaosheng Cui
Date: Sat Aug 03 2024 - 02:56:47 EST


Add check for the return value of platform_get_resource_byname() and
return the error if it fails to catch the error.

Signed-off-by: Gaosheng Cui <cuigaosheng1@xxxxxxxxxx>
---
drivers/spmi/spmi-pmic-arb.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/spmi/spmi-pmic-arb.c b/drivers/spmi/spmi-pmic-arb.c
index 9ba9495fcc4b..5f5f2f0a10b9 100644
--- a/drivers/spmi/spmi-pmic-arb.c
+++ b/drivers/spmi/spmi-pmic-arb.c
@@ -1808,6 +1808,9 @@ static int spmi_pmic_arb_probe(struct platform_device *pdev)
return -ENOMEM;

res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "core");
+ if (!res)
+ return -EINVAL;
+
core = devm_ioremap(dev, res->start, resource_size(res));
if (!core)
return -ENOMEM;
--
2.25.1