* [PATCH] ARM: dts: at91: use correct compatible for the gpio mux controller
@ 2017-04-13 21:22 Peter Rosin
[not found] ` <1492118578-15356-1-git-send-email-peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Peter Rosin @ 2017-04-13 21:22 UTC (permalink / raw)
To: linux-kernel
Cc: Peter Rosin, Nicolas Ferre, Alexandre Belloni, Rob Herring,
Mark Rutland, Russell King, linux-arm-kernel, devicetree
The compatible string for a gpio based mux controller is "gpio-mux",
and nothing else.
Fixes: 29dd89418007 ("ARM: dts: at91: add envelope detector mux to the Axentia TSE-850")
Signed-off-by: Peter Rosin <peda@axentia.se>
---
arch/arm/boot/dts/at91-tse850-3.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Hi!
The compatible string for the gpio based mux changed along the way (on
request from Rob) but I failed to update the implementation in the
gpio-mux driver when I made that change. Consequently, I didn't notice
that I didn't update the compatible string here either, since it all
continued to work in my tests...
The compatible string in the gpio-mux driver is being fixed to match
documentation, so this of course needs fixing too. No TSE-850 devices
are affected, except for the one on my desk.
Sorry for the churn.
Cheers,
peda
diff --git a/arch/arm/boot/dts/at91-tse850-3.dts b/arch/arm/boot/dts/at91-tse850-3.dts
index 6a724cfb5389..168665e56a56 100644
--- a/arch/arm/boot/dts/at91-tse850-3.dts
+++ b/arch/arm/boot/dts/at91-tse850-3.dts
@@ -204,7 +204,7 @@
};
mux: mux-controller {
- compatible = "mux-gpio";
+ compatible = "gpio-mux";
#mux-control-cells = <0>;
mux-gpios = <&pioA 0 GPIO_ACTIVE_HIGH>,
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: dts: at91: use correct compatible for the gpio mux controller
[not found] ` <1492118578-15356-1-git-send-email-peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
@ 2017-04-14 10:07 ` Alexandre Belloni
2017-04-14 10:50 ` Peter Rosin
0 siblings, 1 reply; 3+ messages in thread
From: Alexandre Belloni @ 2017-04-14 10:07 UTC (permalink / raw)
To: Peter Rosin
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Nicolas Ferre, Rob Herring,
Mark Rutland, Russell King,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
devicetree-u79uwXL29TY76Z2rM5mHXA
On 13/04/2017 at 23:22:58 +0200, Peter Rosin wrote:
> The compatible string for a gpio based mux controller is "gpio-mux",
> and nothing else.
>
> Fixes: 29dd89418007 ("ARM: dts: at91: add envelope detector mux to the Axentia TSE-850")
> Signed-off-by: Peter Rosin <peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
> ---
> arch/arm/boot/dts/at91-tse850-3.dts | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> Hi!
>
> The compatible string for the gpio based mux changed along the way (on
> request from Rob) but I failed to update the implementation in the
> gpio-mux driver when I made that change. Consequently, I didn't notice
> that I didn't update the compatible string here either, since it all
> continued to work in my tests...
>
> The compatible string in the gpio-mux driver is being fixed to match
> documentation, so this of course needs fixing too. No TSE-850 devices
> are affected, except for the one on my desk.
>
> Sorry for the churn.
>
So, I folded that one in the previous one and updated my pull request.
Hopefully this will be OK.
--
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: dts: at91: use correct compatible for the gpio mux controller
2017-04-14 10:07 ` Alexandre Belloni
@ 2017-04-14 10:50 ` Peter Rosin
0 siblings, 0 replies; 3+ messages in thread
From: Peter Rosin @ 2017-04-14 10:50 UTC (permalink / raw)
To: Alexandre Belloni
Cc: linux-kernel, Nicolas Ferre, Rob Herring, Mark Rutland,
Russell King, linux-arm-kernel, devicetree
[-- Attachment #1: Type: text/plain, Size: 1441 bytes --]
On April 14, 2017 12:07:05 PM GMT+02:00, Alexandre Belloni <alexandre.belloni@free-electrons.com> wrote:
>On 13/04/2017 at 23:22:58 +0200, Peter Rosin wrote:
>> The compatible string for a gpio based mux controller is "gpio-mux",
>> and nothing else.
>>
>> Fixes: 29dd89418007 ("ARM: dts: at91: add envelope detector mux to
>the Axentia TSE-850")
>> Signed-off-by: Peter Rosin <peda@axentia.se>
>> ---
>> arch/arm/boot/dts/at91-tse850-3.dts | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> Hi!
>>
>> The compatible string for the gpio based mux changed along the way
>(on
>> request from Rob) but I failed to update the implementation in the
>> gpio-mux driver when I made that change. Consequently, I didn't
>notice
>> that I didn't update the compatible string here either, since it all
>> continued to work in my tests...
>>
>> The compatible string in the gpio-mux driver is being fixed to match
>> documentation, so this of course needs fixing too. No TSE-850 devices
>> are affected, except for the one on my desk.
>>
>> Sorry for the churn.
>>
>
>So, I folded that one in the previous one and updated my pull request.
>Hopefully this will be OK.
>
>--
>Alexandre Belloni, Free Electrons
>Embedded Linux and Kernel engineering
>http://free-electrons.com
From my POV, excellent!
Cheers,
peda
--
Sent from my Android device with K-9 Mail. Please excuse my brevity.
[-- Attachment #2: Type: text/html, Size: 1813 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-04-14 10:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-13 21:22 [PATCH] ARM: dts: at91: use correct compatible for the gpio mux controller Peter Rosin
[not found] ` <1492118578-15356-1-git-send-email-peda-koto5C5qi+TLoDKTGw+V6w@public.gmane.org>
2017-04-14 10:07 ` Alexandre Belloni
2017-04-14 10:50 ` Peter Rosin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox