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

Commit 5b232c5a authored by Laxman Dewangan's avatar Laxman Dewangan Committed by Linus Walleij
Browse files

pinctrl: tegra: return correct error type



When memory allocation failed, drive should return error as ENOMEM.

Signed-off-by: default avatarLaxman Dewangan <ldewangan@nvidia.com>
Acked-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent e7f2a444
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -645,7 +645,7 @@ int tegra_pinctrl_probe(struct platform_device *pdev,
				 GFP_KERNEL);
				 GFP_KERNEL);
	if (!pmx->regs) {
	if (!pmx->regs) {
		dev_err(&pdev->dev, "Can't alloc regs pointer\n");
		dev_err(&pdev->dev, "Can't alloc regs pointer\n");
		return -ENODEV;
		return -ENOMEM;
	}
	}


	for (i = 0; i < pmx->nbanks; i++) {
	for (i = 0; i < pmx->nbanks; i++) {