]> git.baikalelectronics.ru Git - kernel.git/commit
hwspinlock: fix return value check in stm32_hwspinlock_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 3 Jan 2019 07:02:30 +0000 (07:02 +0000)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Thu, 3 Jan 2019 19:42:10 +0000 (11:42 -0800)
commitdb161b9f5912c97553b042afb9d93cd8cb2000af
tree20bfe3f3c3017fa2464838a375378e81815fc3bf
parenta3a64317db4f3ac6657ff5213ee7f3858a9b383e
hwspinlock: fix return value check in stm32_hwspinlock_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().

Fixes: a3a64317db4f ("hwspinlock: add STM32 hwspinlock device")
Acked-by: Benjamin Gaignard <benjamin.gaignard@gmail.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
drivers/hwspinlock/stm32_hwspinlock.c