mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 13:37:36 +02:00
mmc: pxamci: Fix error return code in pxamci_probe
[ Upstream commitd7b819b5d3] Fix to return the error code from devm_gpiod_get_optional() instaed of 0 in pxamci_probe(). Fixes:f54005b508("mmc: pxa: Use GPIO descriptor for power") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com> Link: https://lore.kernel.org/r/20201121021431.3168506-1-chengzhihao1@huawei.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
3ab2d54ae3
commit
2c9e1e32a2
|
|
@ -731,6 +731,7 @@ static int pxamci_probe(struct platform_device *pdev)
|
|||
|
||||
host->power = devm_gpiod_get_optional(dev, "power", GPIOD_OUT_LOW);
|
||||
if (IS_ERR(host->power)) {
|
||||
ret = PTR_ERR(host->power);
|
||||
dev_err(dev, "Failed requesting gpio_power\n");
|
||||
goto out;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user