public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] regulator: core: GPIO #0 is a valid GPIO
@ 2014-08-29 18:19 Dmitry Eremin-Solenikov
  2014-08-29 19:01 ` Mark Brown
  0 siblings, 1 reply; 13+ messages in thread
From: Dmitry Eremin-Solenikov @ 2014-08-29 18:19 UTC (permalink / raw)
  To: linux-kernel
  Cc: Mark Brown, Liam Girdwood, Dirk Behme, Gokulkrishnan Nagarajan

From: Dirk Behme <dirk.behme@de.bosch.com>

With GPIO #0, this if statement will always fail. Remove this, the
check for gpio_is_valid() is sufficent here.

Change-Id: Ia10e8e9c74e11deba852fcd44040cc275b583cfd
Signed-off-by: Gokulkrishnan Nagarajan <Gokulkrishnan.Nagarajan@in.bosch.com>
Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
---
 drivers/regulator/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 117f9f8..2f0794f 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -3524,7 +3524,7 @@ regulator_register(const struct regulator_desc *regulator_desc,
 
 	dev_set_drvdata(&rdev->dev, rdev);
 
-	if (config->ena_gpio && gpio_is_valid(config->ena_gpio)) {
+	if (gpio_is_valid(config->ena_gpio)) {
 		ret = regulator_ena_gpio_request(rdev, config);
 		if (ret != 0) {
 			rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
-- 
2.1.0.rc1


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

end of thread, other threads:[~2014-09-04 17:19 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-29 18:19 [PATCH] regulator: core: GPIO #0 is a valid GPIO Dmitry Eremin-Solenikov
2014-08-29 19:01 ` Mark Brown
2014-09-01  7:46   ` Dirk Behme
2014-09-01  7:55     ` Geert Uytterhoeven
2014-09-01 10:15     ` Mark Brown
2014-09-01 11:59       ` Dmitry Eremin-Solenikov
2014-09-01 12:06         ` Mark Brown
2014-09-01 12:35           ` Dmitry Eremin-Solenikov
2014-09-01 12:49             ` Mark Brown
2014-09-03  9:04               ` Dmitry Eremin-Solenikov
2014-09-03 11:01                 ` Mark Brown
2014-09-04 17:15         ` Linus Walleij
2014-09-04 17:19     ` Linus Walleij

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox