mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-11 15:40:50 +00:00
watchdog: wdat_wdt: fix return value check in wdat_wdt_probe()
In case of error, the function devm_ioremap_resource() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
bba6529ea0
commit
356ed04351
@ -351,16 +351,17 @@ static int wdat_wdt_probe(struct platform_device *pdev)
|
|||||||
res = &pdev->resource[i];
|
res = &pdev->resource[i];
|
||||||
if (resource_type(res) == IORESOURCE_MEM) {
|
if (resource_type(res) == IORESOURCE_MEM) {
|
||||||
reg = devm_ioremap_resource(&pdev->dev, res);
|
reg = devm_ioremap_resource(&pdev->dev, res);
|
||||||
|
if (IS_ERR(reg))
|
||||||
|
return PTR_ERR(reg);
|
||||||
} else if (resource_type(res) == IORESOURCE_IO) {
|
} else if (resource_type(res) == IORESOURCE_IO) {
|
||||||
reg = devm_ioport_map(&pdev->dev, res->start, 1);
|
reg = devm_ioport_map(&pdev->dev, res->start, 1);
|
||||||
|
if (!reg)
|
||||||
|
return -ENOMEM;
|
||||||
} else {
|
} else {
|
||||||
dev_err(&pdev->dev, "Unsupported resource\n");
|
dev_err(&pdev->dev, "Unsupported resource\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!reg)
|
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
regs[i] = reg;
|
regs[i] = reg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user