All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] pinctrl/pinctrl-tegra: remove IS_ERR checking of pmx->pctl
@ 2012-06-18 17:44 Devendra Naga
  2012-06-18 18:05 ` Stephen Warren
  2012-06-20  8:04 ` Linus Walleij
  0 siblings, 2 replies; 3+ messages in thread
From: Devendra Naga @ 2012-06-18 17:44 UTC (permalink / raw)
  To: Linus Walleij, Stephen Warren, linux-kernel; +Cc: Devendra Naga

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.

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
---
 drivers/pinctrl/pinctrl-tegra.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/pinctrl/pinctrl-tegra.c b/drivers/pinctrl/pinctrl-tegra.c
index 07228b1..ae52e4e 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,
 	}
 
 	pmx->pctl = pinctrl_register(&tegra_pinctrl_desc, &pdev->dev, pmx);
-	if (IS_ERR(pmx->pctl)) {
+	if (!pmx->pctl) {
 		dev_err(&pdev->dev, "Couldn't register pinctrl driver\n");
-		return PTR_ERR(pmx->pctl);
+		return -ENODEV;
 	}
 
 	pinctrl_add_gpio_range(pmx->pctl, &tegra_pinctrl_gpio_range);
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] pinctrl/pinctrl-tegra: remove IS_ERR checking of pmx->pctl
  2012-06-18 17:44 [PATCH 1/2] pinctrl/pinctrl-tegra: remove IS_ERR checking of pmx->pctl Devendra Naga
@ 2012-06-18 18:05 ` Stephen Warren
  2012-06-20  8:04 ` Linus Walleij
  1 sibling, 0 replies; 3+ messages in thread
From: Stephen Warren @ 2012-06-18 18:05 UTC (permalink / raw)
  To: Devendra Naga; +Cc: Linus Walleij, Stephen Warren, linux-kernel

On 06/18/2012 11:44 AM, Devendra Naga wrote:
> 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.
> 
> Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>

Oops.

Acked-by: Stephen Warren <swarren@wwwdotorg.org>

Probably Cc stable since this is wrong back as far as 3.4.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] pinctrl/pinctrl-tegra: remove IS_ERR checking of pmx->pctl
  2012-06-18 17:44 [PATCH 1/2] pinctrl/pinctrl-tegra: remove IS_ERR checking of pmx->pctl Devendra Naga
  2012-06-18 18:05 ` Stephen Warren
@ 2012-06-20  8:04 ` Linus Walleij
  1 sibling, 0 replies; 3+ messages in thread
From: Linus Walleij @ 2012-06-20  8:04 UTC (permalink / raw)
  To: Devendra Naga; +Cc: Stephen Warren, linux-kernel

On Mon, Jun 18, 2012 at 7:44 PM, Devendra Naga <devendra.aaru@gmail.com> wrote:

> 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.
>
> Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>

Applied with Stephen's ACK, thanks!
Linus Walleij

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-06-20  8:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-18 17:44 [PATCH 1/2] pinctrl/pinctrl-tegra: remove IS_ERR checking of pmx->pctl Devendra Naga
2012-06-18 18:05 ` Stephen Warren
2012-06-20  8:04 ` Linus Walleij

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.