reset: mchp: sparx5: fix return value check in mchp_sparx5_map_io()
authorWei Yongjun <weiyongjun1@huawei.com>
Wed, 19 May 2021 14:16:37 +0000 (14:16 +0000)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Mon, 7 Jun 2021 09:26:31 +0000 (11:26 +0200)
commit91105ed604e4ea7075a35a1ef8bc1782d347290e
treec5f4ad4ddc664a3ad4aafa7295717486dd10a9b5
parent747aeec9ac0612fa107a6032d4e475112e8820fb
reset: mchp: sparx5: fix return value check in mchp_sparx5_map_io()

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

Fixes: 453ed4283beb ("reset: mchp: sparx5: add switch reset driver")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Link: https://lore.kernel.org/r/20210519141638.3052456-1-weiyongjun1@huawei.com
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/reset/reset-microchip-sparx5.c