* [PATCH RFT] gpio: mpc8xxx: Fixup setting gpio direction output
@ 2016-02-11 13:13 Axel Lin
2016-02-15 23:21 ` Linus Walleij
2016-02-19 11:08 ` Gang Liu
0 siblings, 2 replies; 3+ messages in thread
From: Axel Lin @ 2016-02-11 13:13 UTC (permalink / raw)
To: Linus Walleij
Cc: Liu Gang, Alexandre Courbot, Ricardo Ribalda Delgado,
Alexander Stein, linux-gpio
For devtype with specific gpio_dir_out implementation, current code looks
wrong because below code sets both gc->direction_output and
mpc8xxx_gc->direction_output to the same function.
gc->direction_output = devtype->gpio_dir_out ?: gc->direction_output;
mpc8xxx_gc->direction_output = gc->direction_output;
Set mpc8xxx_gc->direction_output = gc->direction_output first to fix it.
This way mpc8xxx_gc->direction_output actually calls the standard
bgpio_dir_out() to update register.
Setting gc->direction_output to gc->direction_output looks strange.
This patch also slightly changes the code for better readability.
Fixes: commit 42178e2a1e42 ("drivers/gpio: Switch gpio-mpc8xxx to use gpio-generic")
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
Hi,
I don't have this h/w, please review and test if this patch works.
Thank,
Axel
drivers/gpio/gpio-mpc8xxx.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/drivers/gpio/gpio-mpc8xxx.c b/drivers/gpio/gpio-mpc8xxx.c
index ecdb27a..0ed279a 100644
--- a/drivers/gpio/gpio-mpc8xxx.c
+++ b/drivers/gpio/gpio-mpc8xxx.c
@@ -344,11 +344,14 @@ static int mpc8xxx_probe(struct platform_device *pdev)
*/
mpc8xxx_irq_chip.irq_set_type = devtype->irq_set_type;
- gc->direction_output = devtype->gpio_dir_out ?: gc->direction_output;
- gc->get = devtype->gpio_get ?: gc->get;
- gc->to_irq = mpc8xxx_gpio_to_irq;
-
mpc8xxx_gc->direction_output = gc->direction_output;
+ if (devtype->gpio_dir_out)
+ gc->direction_output = devtype->gpio_dir_out;
+
+ if (devtype->gpio_get)
+ gc->get = devtype->gpio_get;
+
+ gc->to_irq = mpc8xxx_gpio_to_irq;
ret = gpiochip_add_data(gc, mpc8xxx_gc);
if (ret) {
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH RFT] gpio: mpc8xxx: Fixup setting gpio direction output
2016-02-11 13:13 [PATCH RFT] gpio: mpc8xxx: Fixup setting gpio direction output Axel Lin
@ 2016-02-15 23:21 ` Linus Walleij
2016-02-19 11:08 ` Gang Liu
1 sibling, 0 replies; 3+ messages in thread
From: Linus Walleij @ 2016-02-15 23:21 UTC (permalink / raw)
To: Axel Lin, Liu Gang
Cc: Alexandre Courbot, Ricardo Ribalda Delgado, Alexander Stein,
linux-gpio@vger.kernel.org
On Thu, Feb 11, 2016 at 2:13 PM, Axel Lin <axel.lin@ingics.com> wrote:
> For devtype with specific gpio_dir_out implementation, current code looks
> wrong because below code sets both gc->direction_output and
> mpc8xxx_gc->direction_output to the same function.
>
> gc->direction_output = devtype->gpio_dir_out ?: gc->direction_output;
> mpc8xxx_gc->direction_output = gc->direction_output;
>
> Set mpc8xxx_gc->direction_output = gc->direction_output first to fix it.
> This way mpc8xxx_gc->direction_output actually calls the standard
> bgpio_dir_out() to update register.
>
> Setting gc->direction_output to gc->direction_output looks strange.
> This patch also slightly changes the code for better readability.
>
> Fixes: commit 42178e2a1e42 ("drivers/gpio: Switch gpio-mpc8xxx to use gpio-generic")
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
Liu please comment on this patch.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 3+ messages in thread* RE: [PATCH RFT] gpio: mpc8xxx: Fixup setting gpio direction output
2016-02-11 13:13 [PATCH RFT] gpio: mpc8xxx: Fixup setting gpio direction output Axel Lin
2016-02-15 23:21 ` Linus Walleij
@ 2016-02-19 11:08 ` Gang Liu
1 sibling, 0 replies; 3+ messages in thread
From: Gang Liu @ 2016-02-19 11:08 UTC (permalink / raw)
To: Axel Lin, Linus Walleij
Cc: Alexandre Courbot, Ricardo Ribalda Delgado, Alexander Stein,
linux-gpio@vger.kernel.org
Hi, Axel,
Yes you are right.
Maybe we can make the change just like this:
+ mpc8xxx_gc->direction_output = gc->direction_output;
gc->direction_output = devtype->gpio_dir_out ?: gc->direction_output;
gc->get = devtype->gpio_get ?: gc->get;
gc->to_irq = mpc8xxx_gpio_to_irq;
- mpc8xxx_gc->direction_output = gc->direction_output;
Best Regards,
Liu Gang
-----Original Message-----
---
Hi,
I don't have this h/w, please review and test if this patch works.
Thank,
Axel
drivers/gpio/gpio-mpc8xxx.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/drivers/gpio/gpio-mpc8xxx.c b/drivers/gpio/gpio-mpc8xxx.c index ecdb27a..0ed279a 100644
--- a/drivers/gpio/gpio-mpc8xxx.c
+++ b/drivers/gpio/gpio-mpc8xxx.c
@@ -344,11 +344,14 @@ static int mpc8xxx_probe(struct platform_device *pdev)
*/
mpc8xxx_irq_chip.irq_set_type = devtype->irq_set_type;
- gc->direction_output = devtype->gpio_dir_out ?: gc->direction_output;
- gc->get = devtype->gpio_get ?: gc->get;
- gc->to_irq = mpc8xxx_gpio_to_irq;
-
mpc8xxx_gc->direction_output = gc->direction_output;
+ if (devtype->gpio_dir_out)
+ gc->direction_output = devtype->gpio_dir_out;
+
+ if (devtype->gpio_get)
+ gc->get = devtype->gpio_get;
+
+ gc->to_irq = mpc8xxx_gpio_to_irq;
ret = gpiochip_add_data(gc, mpc8xxx_gc);
if (ret) {
--
2.1.4
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-02-19 11:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-11 13:13 [PATCH RFT] gpio: mpc8xxx: Fixup setting gpio direction output Axel Lin
2016-02-15 23:21 ` Linus Walleij
2016-02-19 11:08 ` Gang Liu
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.