Commit ffe4770b authored by Varka Bhadram's avatar Varka Bhadram Committed by Linus Walleij

gpio-amd8111: check ioport_map return value

ioport_map() may fail. Its safe to check the return value.
Signed-off-by: default avatarVarka Bhadram <varkab@cdac.in>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent da9df93e
......@@ -213,6 +213,11 @@ static int __init amd_gpio_init(void)
goto out;
}
gp.pm = ioport_map(gp.pmbase + PMBASE_OFFSET, PMBASE_SIZE);
if (!gp.pm) {
dev_err(&pdev->dev, "Couldn't map io port into io memory\n");
err = -ENOMEM;
goto out;
}
gp.pdev = pdev;
gp.chip.dev = &pdev->dev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment