regulator: stm32-pwr: Fix return value check in stm32_pwr_regulator_probe()

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

Fixes: 6cdae8173f ("regulator: Add support for stm32 power regulators")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Wei Yongjun 2019-04-17 02:30:59 +00:00 committed by Mark Brown
parent 82f26185a9
commit dc62f951a6
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 2 additions and 2 deletions

View File

@ -140,9 +140,9 @@ static int stm32_pwr_regulator_probe(struct platform_device *pdev)
int i, ret = 0;
base = of_iomap(np, 0);
if (IS_ERR(base)) {
if (!base) {
dev_err(&pdev->dev, "Unable to map IO memory\n");
return PTR_ERR(base);
return -ENOMEM;
}
config.dev = &pdev->dev;