pinctrl: mediatek: moore: fix return value check in mtk_moore_pinctrl_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 20 Sep 2018 06:21:50 +0000 (06:21 +0000)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 21 Sep 2018 16:08:18 +0000 (09:08 -0700)
commit068cfb9a0fd908747f29d048719f254e21b9dad5
tree9d430330221d4440414b7589807d3ca58c7ca069
parent07c6b037c2bae2a0f1978198f1486b3b2681261b
pinctrl: mediatek: moore: fix return value check in mtk_moore_pinctrl_probe()

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

Fixes: b7d7f9eeca55 ("pinctrl: mediatek: extend struct mtk_pin_desc which per-pin driver depends on")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Sean Wang <sean.wang@mediatek.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/mediatek/pinctrl-moore.c