Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7bdeb7f5 authored by Wei Yongjun's avatar Wei Yongjun Committed by Marc Zyngier
Browse files

irqchip/aspeed-i2c-ic: Fix return value check in aspeed_i2c_ic_of_init()



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..

Reviewed-by: default avatarBrendan Higgins <brendanhiggins@google.com>
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
parent 215f4cc0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -76,8 +76,8 @@ static int __init aspeed_i2c_ic_of_init(struct device_node *node,
		return -ENOMEM;

	i2c_ic->base = of_iomap(node, 0);
	if (IS_ERR(i2c_ic->base)) {
		ret = PTR_ERR(i2c_ic->base);
	if (!i2c_ic->base) {
		ret = -ENOMEM;
		goto err_free_ic;
	}