]> git.baikalelectronics.ru Git - kernel.git/commit
regulator: stm32-pwr: Fix return value check in stm32_pwr_regulator_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Wed, 17 Apr 2019 02:30:59 +0000 (02:30 +0000)
committerMark Brown <broonie@kernel.org>
Wed, 17 Apr 2019 16:33:45 +0000 (17:33 +0100)
commit4127def4660f41bfac539b72ee072ba83d34e30b
treeea24d7c73c857f30c3b40face0b53799a29fc624
parent565f8a45d95f93fc0afdcec9e6af6390332f0988
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: a4c030f753e6 ("regulator: Add support for stm32 power regulators")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/stm32-pwr.c