From: Bartosz Golaszewski <brgl@bgdev.pl>
To: Hans de Goede <hdegoede@redhat.com>
Cc: Andy Shevchenko <andy@kernel.org>,
Linus Walleij <linus.walleij@linaro.org>,
linux-gpio@vger.kernel.org,
Andy Shevchenko <andy.shevchenko@gmail.com>,
Daniel Scally <dan.scally@ideasonboard.com>,
Sakari Ailus <sakari.ailus@linux.intel.com>
Subject: Re: [PATCH resend v2] gpio: tps68470: Make tps68470_gpio_output() always set the initial value
Date: Wed, 19 Jul 2023 13:22:30 +0200 [thread overview]
Message-ID: <CAMRc=MdkFsbyr+BMTPQ2EHwkSJ_5GNHaRMACM0T+efkmphoL-g@mail.gmail.com> (raw)
In-Reply-To: <20230710123425.316943-1-hdegoede@redhat.com>
On Mon, Jul 10, 2023 at 2:34 PM Hans de Goede <hdegoede@redhat.com> wrote:
>
> Make tps68470_gpio_output() call tps68470_gpio_set() for output-only pins
> too, so that the initial value passed to gpiod_direction_output() is
> honored for these pins too.
>
> Fixes: 275b13a65547 ("gpio: Add support for TPS68470 GPIOs")
> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
> Tested-by: Daniel Scally <dan.scally@ideasonboard.com>
> Reviewed-by: Sakari Ailus <sakari.ailus@linux.intel.com>
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---
> Changes in v2:
> - Add Fixes tag
> - Add Andy's Reviewed-by
> ---
> drivers/gpio/gpio-tps68470.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpio/gpio-tps68470.c b/drivers/gpio/gpio-tps68470.c
> index aaddcabe9b35..532deaddfd4e 100644
> --- a/drivers/gpio/gpio-tps68470.c
> +++ b/drivers/gpio/gpio-tps68470.c
> @@ -91,13 +91,13 @@ static int tps68470_gpio_output(struct gpio_chip *gc, unsigned int offset,
> struct tps68470_gpio_data *tps68470_gpio = gpiochip_get_data(gc);
> struct regmap *regmap = tps68470_gpio->tps68470_regmap;
>
> + /* Set the initial value */
> + tps68470_gpio_set(gc, offset, value);
> +
> /* rest are always outputs */
> if (offset >= TPS68470_N_REGULAR_GPIO)
> return 0;
>
> - /* Set the initial value */
> - tps68470_gpio_set(gc, offset, value);
> -
> return regmap_update_bits(regmap, TPS68470_GPIO_CTL_REG_A(offset),
> TPS68470_GPIO_MODE_MASK,
> TPS68470_GPIO_MODE_OUT_CMOS);
> --
> 2.41.0
>
Applied, thanks!
Bart
prev parent reply other threads:[~2023-07-19 11:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-10 12:34 [PATCH resend v2] gpio: tps68470: Make tps68470_gpio_output() always set the initial value Hans de Goede
2023-07-19 11:22 ` Bartosz Golaszewski [this message]
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='CAMRc=MdkFsbyr+BMTPQ2EHwkSJ_5GNHaRMACM0T+efkmphoL-g@mail.gmail.com' \
--to=brgl@bgdev.pl \
--cc=andy.shevchenko@gmail.com \
--cc=andy@kernel.org \
--cc=dan.scally@ideasonboard.com \
--cc=hdegoede@redhat.com \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=sakari.ailus@linux.intel.com \
/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).