From: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
To: Linus Walleij <linus.walleij@linaro.org>,
linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Subject: [PATCH] gpiolib: Show correct direction from the beginning
Date: Fri, 14 Sep 2018 09:08:39 +0200 [thread overview]
Message-ID: <20180914070839.4667-2-ricardo.ribalda@gmail.com> (raw)
In-Reply-To: <20180914070839.4667-1-ricardo.ribalda@gmail.com>
Current code assumes that the direction is input if direction_input
function is set.
This might not be the case on GPIOs with programmable direction.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---
drivers/gpio/gpiolib.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index a57300c1d649..af853749e0bb 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -1352,7 +1352,12 @@ int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
* it does, and in case chip->get_direction is not set, we may
* expose the wrong direction in sysfs.
*/
- desc->flags = !chip->direction_input ? (1 << FLAG_IS_OUT) : 0;
+ if (chip->get_direction)
+ desc->flags = !chip->get_direction(chip, i) ?
+ (1 << FLAG_IS_OUT) : 0;
+ else
+ desc->flags = !chip->direction_input ?
+ (1 << FLAG_IS_OUT) : 0;
}
#ifdef CONFIG_PINCTRL
--
2.18.0
next prev parent reply other threads:[~2018-09-14 7:08 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-14 7:08 [RFC] gpiolib: Fix gpio_direction_* for single direction GPIOs Ricardo Ribalda Delgado
2018-09-14 7:08 ` Ricardo Ribalda Delgado [this message]
2018-09-18 22:40 ` [PATCH] gpiolib: Show correct direction from the beginning Linus Walleij
2018-09-19 4:04 ` Ricardo Ribalda Delgado
2018-09-19 11:50 ` Timur Tabi
2018-09-19 15:27 ` Ricardo Ribalda Delgado
2018-09-20 12:20 ` Timur Tabi
2018-09-20 14:14 ` Ricardo Ribalda Delgado
2018-09-20 22:43 ` Linus Walleij
2018-09-20 12:25 ` Timur Tabi
2018-09-20 5:23 ` Linus Walleij
2018-09-20 12:35 ` Timur Tabi
2018-09-20 22:36 ` Linus Walleij
2018-09-21 2:05 ` Timur Tabi
2018-09-21 16:07 ` Linus Walleij
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180914070839.4667-2-ricardo.ribalda@gmail.com \
--to=ricardo.ribalda@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).