From: "Heiko Stübner" <heiko@sntech.de>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: linux-gpio@vger.kernel.org, Johan Hovold <johan@kernel.org>,
Alexandre Courbot <acourbot@nvidia.com>,
Michael Welling <mwelling@ieee.org>,
Markus Pargmann <mpa@pengutronix.de>
Subject: Re: [PATCH 105/182] pinctrl: rockchip: use gpiochip data pointer
Date: Fri, 11 Dec 2015 12:41:35 +0100 [thread overview]
Message-ID: <1775358.2vXvi2GDLK@diego> (raw)
In-Reply-To: <1449667938-2753-1-git-send-email-linus.walleij@linaro.org>
Am Mittwoch, 9. Dezember 2015, 14:32:18 schrieb Linus Walleij:
> This makes the driver use the data pointer added to the gpio_chip
> to store a pointer to the state container instead of relying on
> container_of().
>
> Cc: Heiko Stuebner <heiko@sntech.de>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Looks nice, thanks for trying to keep gpio drivers clean
Acked-by: Heiko Stuebner <heiko@sntech.de>
> ---
> drivers/pinctrl/pinctrl-rockchip.c | 15 +++++----------
> 1 file changed, 5 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/pinctrl/pinctrl-rockchip.c
> b/drivers/pinctrl/pinctrl-rockchip.c index 2b88a40f61d3..56b8ce2a3df9
> 100644
> --- a/drivers/pinctrl/pinctrl-rockchip.c
> +++ b/drivers/pinctrl/pinctrl-rockchip.c
> @@ -224,11 +224,6 @@ static struct regmap_config rockchip_regmap_config = {
> .reg_stride = 4,
> };
>
> -static inline struct rockchip_pin_bank *gc_to_pin_bank(struct gpio_chip
> *gc) -{
> - return container_of(gc, struct rockchip_pin_bank, gpio_chip);
> -}
> -
> static const inline struct rockchip_pin_group *pinctrl_name_to_group(
> const struct rockchip_pinctrl *info,
> const char *name)
> @@ -939,7 +934,7 @@ static int _rockchip_pmx_gpio_set_direction(struct
> gpio_chip *chip, unsigned long flags;
> u32 data;
>
> - bank = gc_to_pin_bank(chip);
> + bank = gpiochip_get_data(chip);
>
> ret = rockchip_set_mux(bank, pin, RK_FUNC_GPIO);
> if (ret < 0)
> @@ -1376,7 +1371,7 @@ static int rockchip_pinctrl_register(struct
> platform_device *pdev,
>
> static void rockchip_gpio_set(struct gpio_chip *gc, unsigned offset, int
> value) {
> - struct rockchip_pin_bank *bank = gc_to_pin_bank(gc);
> + struct rockchip_pin_bank *bank = gpiochip_get_data(gc);
> void __iomem *reg = bank->reg_base + GPIO_SWPORT_DR;
> unsigned long flags;
> u32 data;
> @@ -1400,7 +1395,7 @@ static void rockchip_gpio_set(struct gpio_chip *gc,
> unsigned offset, int value) */
> static int rockchip_gpio_get(struct gpio_chip *gc, unsigned offset)
> {
> - struct rockchip_pin_bank *bank = gc_to_pin_bank(gc);
> + struct rockchip_pin_bank *bank = gpiochip_get_data(gc);
> u32 data;
>
> clk_enable(bank->clk);
> @@ -1439,7 +1434,7 @@ static int rockchip_gpio_direction_output(struct
> gpio_chip *gc, */
> static int rockchip_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
> {
> - struct rockchip_pin_bank *bank = gc_to_pin_bank(gc);
> + struct rockchip_pin_bank *bank = gpiochip_get_data(gc);
> unsigned int virq;
>
> if (!bank->domain)
> @@ -1758,7 +1753,7 @@ static int rockchip_gpiolib_register(struct
> platform_device *pdev, gc->of_node = bank->of_node;
> gc->label = bank->name;
>
> - ret = gpiochip_add(gc);
> + ret = gpiochip_add_data(gc, bank);
> if (ret) {
> dev_err(&pdev->dev, "failed to register gpio_chip %s, error code:
%d\n",
> gc->label, ret);
prev parent reply other threads:[~2015-12-11 11:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-09 13:32 [PATCH 105/182] pinctrl: rockchip: use gpiochip data pointer Linus Walleij
2015-12-11 11:41 ` Heiko Stübner [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=1775358.2vXvi2GDLK@diego \
--to=heiko@sntech.de \
--cc=acourbot@nvidia.com \
--cc=johan@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=mpa@pengutronix.de \
--cc=mwelling@ieee.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).