aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl
diff options
context:
space:
mode:
authorDevendra Naga <devendra.aaru@gmail.com>2012-06-18 13:44:31 -0400
committerLinus Walleij <linus.walleij@linaro.org>2012-07-03 15:51:08 -0400
commitcb0f7d35e385fc242c76bfe7f1d68c1904c6f965 (patch)
tree3dfee3f62d905b6d293942c5bf2ee800ef8fdf17 /drivers/pinctrl
parent8003ae335ad29664171f178eb1a6ef89cc23f4e9 (diff)
pinctrl/pinctrl-tegra: remove IS_ERR checking of pmx->pctl
pinctrl_register returns a pointer of struct type struct pinctrl_dev, if successfully registered to pinctrl subsystem, otherwise returns NULL, and there wont' be any pointers which are not dereferencible. They are not type of pointer addresses but are kind of error codes rather actual addresses, but are a kind of return codes of functions returning integer types. return -ENODEV if device registration fails. Acked-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r--drivers/pinctrl/pinctrl-tegra.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/pinctrl-tegra.c b/drivers/pinctrl/pinctrl-tegra.c
index 07228b17a37..ae52e4e5d09 100644
--- a/drivers/pinctrl/pinctrl-tegra.c
+++ b/drivers/pinctrl/pinctrl-tegra.c
@@ -745,9 +745,9 @@ int __devinit tegra_pinctrl_probe(struct platform_device *pdev,
745 } 745 }
746 746
747 pmx->pctl = pinctrl_register(&tegra_pinctrl_desc, &pdev->dev, pmx); 747 pmx->pctl = pinctrl_register(&tegra_pinctrl_desc, &pdev->dev, pmx);
748 if (IS_ERR(pmx->pctl)) { 748 if (!pmx->pctl) {
749 dev_err(&pdev->dev, "Couldn't register pinctrl driver\n"); 749 dev_err(&pdev->dev, "Couldn't register pinctrl driver\n");
750 return PTR_ERR(pmx->pctl); 750 return -ENODEV;
751 } 751 }
752 752
753 pinctrl_add_gpio_range(pmx->pctl, &tegra_pinctrl_gpio_range); 753 pinctrl_add_gpio_range(pmx->pctl, &tegra_pinctrl_gpio_range);