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

Commit 83626bbd authored by Wei Yongjun's avatar Wei Yongjun Committed by Linus Walleij
Browse files

gpio: aspeed: remove redundant return value check



Remove unneeded error handling on the result of a call
to platform_get_resource() when the value is passed to
devm_ioremap_resource().

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 6e643d8d
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -409,9 +409,6 @@ static int __init aspeed_gpio_probe(struct platform_device *pdev)
		return -ENOMEM;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res)
		return -ENXIO;

	gpio->base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(gpio->base))
		return PTR_ERR(gpio->base);