[PATCH 2/3] Input: gpio_keys - always try fwnode first

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This makes the gpio_keys input driver try fwnode first when
looking up GPIO descriptors, even if no fwnode was passed.

With the changes to the gpiolib, if NULL us passed as
fwnode, the gpiolib will attempt to look up the GPIO
descriptor from the machine descriptor tables.

Cc: Dmitry Torokhov <dmitry.torokhov@xxxxxxxxx>
Cc: Andy Shevchenko <andy@xxxxxxxxxxxxx>
Cc: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
Cc: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx>
Signed-off-by: Linus Walleij <linus.walleij@xxxxxxxxxx>
---
Dmitry: I'm looking for your ACK if you agree with this
approach overall so I can apply this with the changes to
gpiolib to the GPIO tree.
---
 drivers/input/keyboard/gpio_keys.c | 47 ++++++++++++++++++------------
 1 file changed, 28 insertions(+), 19 deletions(-)

diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c
index 492a971b95b5..eef2dcbc9185 100644
--- a/drivers/input/keyboard/gpio_keys.c
+++ b/drivers/input/keyboard/gpio_keys.c
@@ -499,25 +499,34 @@ static int gpio_keys_setup_key(struct platform_device *pdev,
 	bdata->button = button;
 	spin_lock_init(&bdata->lock);
 
-	if (child) {
-		bdata->gpiod = devm_fwnode_get_gpiod_from_child(dev, NULL,
-								child,
-								GPIOD_IN,
-								desc);
-		if (IS_ERR(bdata->gpiod)) {
-			error = PTR_ERR(bdata->gpiod);
-			if (error == -ENOENT) {
-				/*
-				 * GPIO is optional, we may be dealing with
-				 * purely interrupt-driven setup.
-				 */
-				bdata->gpiod = NULL;
-			} else {
-				if (error != -EPROBE_DEFER)
-					dev_err(dev, "failed to get gpio: %d\n",
-						error);
-				return error;
-			}
+	/*
+	 * We try this first as it will find GPIOs even from board
+	 * files if properly done.
+	 */
+	bdata->gpiod = devm_fwnode_get_gpiod_from_child(dev, NULL,
+							child,
+							GPIOD_IN,
+							desc);
+	/*
+	 * If we have a valid fwnode and this lookup fails, we need
+	 * to give up. Otherwise we try to use the GPIO from the
+	 * platform data.
+	 */
+	if (!IS_ERR(bdata->gpiod)) {
+		/* All is good */
+	} else if (child) {
+		error = PTR_ERR(bdata->gpiod);
+		if (error == -ENOENT) {
+			/*
+			 * GPIO is optional, we may be dealing with
+			 * purely interrupt-driven setup.
+			 */
+			bdata->gpiod = NULL;
+		} else {
+			if (error != -EPROBE_DEFER)
+				dev_err(dev, "failed to get gpio: %d\n",
+					error);
+			return error;
 		}
 	} else if (gpio_is_valid(button->gpio)) {
 		/*
-- 
2.17.1




[Index of Archives]     [Linux SPI]     [Linux Kernel]     [Linux ARM (vger)]     [Linux ARM MSM]     [Linux Omap]     [Linux Arm]     [Linux Tegra]     [Fedora ARM]     [Linux for Samsung SOC]     [eCos]     [Linux Fastboot]     [Gcc Help]     [Git]     [DCCP]     [IETF Announce]     [Security]     [Linux MIPS]     [Yosemite Campsites]

  Powered by Linux