devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] riscv: dts: microchip: fix gpio1 reg property typo
@ 2022-05-17 10:40 Conor Paxton
  2022-05-17 14:50 ` Krzysztof Kozlowski
  2022-05-17 14:51 ` Krzysztof Kozlowski
  0 siblings, 2 replies; 5+ messages in thread
From: Conor Paxton @ 2022-05-17 10:40 UTC (permalink / raw)
  To: conor.dooley, Palmer Dabbelt
  Cc: Lewis Hanly, Rob Herring, Krzysztof Kozlowski, Paul Walmsley,
	Albert Ou, linux-riscv, devicetree, linux-kernel, Conor Paxton

Fix reg address typo in the gpio1 stanza.

Signed-off-by: Conor Paxton <conor.paxton@microchip.com>
---
 arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi b/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi
index 746c4d4e7686..cf2f55e1dcb6 100644
--- a/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi
+++ b/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi
@@ -366,7 +366,7 @@ gpio0: gpio@20120000 {
 
 		gpio1: gpio@20121000 {
 			compatible = "microchip,mpfs-gpio";
-			reg = <000 0x20121000 0x0 0x1000>;
+			reg = <0x0 0x20121000 0x0 0x1000>;
 			interrupt-parent = <&plic>;
 			interrupt-controller;
 			#interrupt-cells = <1>;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] riscv: dts: microchip: fix gpio1 reg property typo
  2022-05-17 10:40 [PATCH] riscv: dts: microchip: fix gpio1 reg property typo Conor Paxton
@ 2022-05-17 14:50 ` Krzysztof Kozlowski
  2022-05-17 14:51 ` Krzysztof Kozlowski
  1 sibling, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-05-17 14:50 UTC (permalink / raw)
  To: Conor Paxton, conor.dooley, Palmer Dabbelt
  Cc: Lewis Hanly, Rob Herring, Krzysztof Kozlowski, Paul Walmsley,
	Albert Ou, linux-riscv, devicetree, linux-kernel

On 17/05/2022 12:40, Conor Paxton wrote:
> Fix reg address typo in the gpio1 stanza.
> 
> Signed-off-by: Conor Paxton <conor.paxton@microchip.com>
> ---
>  arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi | 2 +-


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>


Best regards,
Krzysztof

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] riscv: dts: microchip: fix gpio1 reg property typo
  2022-05-17 10:40 [PATCH] riscv: dts: microchip: fix gpio1 reg property typo Conor Paxton
  2022-05-17 14:50 ` Krzysztof Kozlowski
@ 2022-05-17 14:51 ` Krzysztof Kozlowski
  2022-05-17 15:53   ` Palmer Dabbelt
  1 sibling, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-05-17 14:51 UTC (permalink / raw)
  To: Conor Paxton, conor.dooley, Palmer Dabbelt
  Cc: Lewis Hanly, Rob Herring, Krzysztof Kozlowski, Paul Walmsley,
	Albert Ou, linux-riscv, devicetree, linux-kernel

On 17/05/2022 12:40, Conor Paxton wrote:
> Fix reg address typo in the gpio1 stanza.
> 
> Signed-off-by: Conor Paxton <conor.paxton@microchip.com>
> ---
>  arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi | 2 +-

Pressed send to fast...

Please add Fixes tag, unless fixed commit SHA is not considered stable.


Best regards,
Krzysztof

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] riscv: dts: microchip: fix gpio1 reg property typo
  2022-05-17 14:51 ` Krzysztof Kozlowski
@ 2022-05-17 15:53   ` Palmer Dabbelt
  2022-05-17 15:58     ` Conor.Dooley
  0 siblings, 1 reply; 5+ messages in thread
From: Palmer Dabbelt @ 2022-05-17 15:53 UTC (permalink / raw)
  To: krzysztof.kozlowski
  Cc: conor.paxton, conor.dooley, lewis.hanly, robh+dt,
	krzysztof.kozlowski+dt, Paul Walmsley, aou, linux-riscv,
	devicetree, linux-kernel

On Tue, 17 May 2022 07:51:32 PDT (-0700), krzysztof.kozlowski@linaro.org wrote:
> On 17/05/2022 12:40, Conor Paxton wrote:
>> Fix reg address typo in the gpio1 stanza.
>>
>> Signed-off-by: Conor Paxton <conor.paxton@microchip.com>
>> ---
>>  arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi | 2 +-
>
> Pressed send to fast...
>
> Please add Fixes tag, unless fixed commit SHA is not considered stable.

Conor might be asleep, and as it's late in the cycle I figured I'd just 
chime in directly.  This LGTM, I usually add fixes myself if there 
aren't any.  Unless there's any objections to

Fixes: 528a5b1f2556 ("riscv: dts: microchip: add new peripherals to icicle kit device tree")

I'll put this on fixes.

Thanks!


>
>
> Best regards,
> Krzysztof

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] riscv: dts: microchip: fix gpio1 reg property typo
  2022-05-17 15:53   ` Palmer Dabbelt
@ 2022-05-17 15:58     ` Conor.Dooley
  0 siblings, 0 replies; 5+ messages in thread
From: Conor.Dooley @ 2022-05-17 15:58 UTC (permalink / raw)
  To: palmer, krzysztof.kozlowski
  Cc: Conor.Paxton, Conor.Dooley, Lewis.Hanly, robh+dt,
	krzysztof.kozlowski+dt, paul.walmsley, aou, linux-riscv,
	devicetree, linux-kernel



On 17/05/2022 16:53, Palmer Dabbelt wrote:
> On Tue, 17 May 2022 07:51:32 PDT (-0700), krzysztof.kozlowski@linaro.org wrote:
>> On 17/05/2022 12:40, Conor Paxton wrote:
>>> Fix reg address typo in the gpio1 stanza.
>>>
>>> Signed-off-by: Conor Paxton <conor.paxton@microchip.com>
>>> ---
>>>  arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi | 2 +-
>>
>> Pressed send to fast...
>>
>> Please add Fixes tag, unless fixed commit SHA is not considered stable.
> 
> Conor might be asleep, and as it's late in the cycle I figured I'd just chime in directly.  This LGTM, I usually add fixes myself if there aren't any.  Unless there's any objections to

It's not even 1700 yet, neither Conor on the mail is asleep!

> 
> Fixes: 528a5b1f2556 ("riscv: dts: microchip: add new peripherals to icicle kit device tree")

Saw Krzysztof's mail as I went out the door, I was gonna add an RB & the fixes tag
once I got home but beaten to the punch.
FWIW at this point:

Reviewed-by: Conor Dooley <conor.dooley@microchip.com>

> 
> I'll put this on fixes.
> 
> Thanks!
> 
> 
>>
>>
>> Best regards,
>> Krzysztof

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-05-17 15:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-17 10:40 [PATCH] riscv: dts: microchip: fix gpio1 reg property typo Conor Paxton
2022-05-17 14:50 ` Krzysztof Kozlowski
2022-05-17 14:51 ` Krzysztof Kozlowski
2022-05-17 15:53   ` Palmer Dabbelt
2022-05-17 15:58     ` Conor.Dooley

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).