linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] riscv: dts: fu540-c000: fix duplicated dma compatible
@ 2022-04-21  6:54 Krzysztof Kozlowski
  2022-04-21  7:46 ` Bin Meng
  2022-04-26  7:53 ` Krzysztof Kozlowski
  0 siblings, 2 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-21  6:54 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Zong Li, Conor Dooley, Bin Meng, devicetree,
	linux-riscv, linux-kernel
  Cc: Krzysztof Kozlowski

Remove duplicated compatible to fix error:

  u540-c000.dtsi:171.4-42: ERROR (duplicate_property_names): /soc/dma@3000000:compatible: Duplicate property name

Fixes: 7eba954a8de8 ("riscv: dts: Add dma-channels property and modify compatible")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/riscv/boot/dts/sifive/fu540-c000.dtsi | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/riscv/boot/dts/sifive/fu540-c000.dtsi b/arch/riscv/boot/dts/sifive/fu540-c000.dtsi
index fa8c18c0e5b0..7ea6300191a5 100644
--- a/arch/riscv/boot/dts/sifive/fu540-c000.dtsi
+++ b/arch/riscv/boot/dts/sifive/fu540-c000.dtsi
@@ -168,7 +168,6 @@ uart0: serial@10010000 {
 			status = "disabled";
 		};
 		dma: dma@3000000 {
-			compatible = "sifive,fu540-c000-pdma";
 			compatible = "sifive,fu540-c000-pdma", "sifive,pdma0";
 			reg = <0x0 0x3000000 0x0 0x8000>;
 			interrupt-parent = <&plic0>;
-- 
2.32.0


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

* Re: [PATCH] riscv: dts: fu540-c000: fix duplicated dma compatible
  2022-04-21  6:54 [PATCH] riscv: dts: fu540-c000: fix duplicated dma compatible Krzysztof Kozlowski
@ 2022-04-21  7:46 ` Bin Meng
  2022-04-26  7:53 ` Krzysztof Kozlowski
  1 sibling, 0 replies; 4+ messages in thread
From: Bin Meng @ 2022-04-21  7:46 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Rob Herring, Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Zong Li, Conor Dooley, devicetree, linux-riscv,
	linux-kernel

On Thu, Apr 21, 2022 at 2:54 PM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> Remove duplicated compatible to fix error:
>
>   u540-c000.dtsi:171.4-42: ERROR (duplicate_property_names): /soc/dma@3000000:compatible: Duplicate property name
>
> Fixes: 7eba954a8de8 ("riscv: dts: Add dma-channels property and modify compatible")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  arch/riscv/boot/dts/sifive/fu540-c000.dtsi | 1 -
>  1 file changed, 1 deletion(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

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

* Re: [PATCH] riscv: dts: fu540-c000: fix duplicated dma compatible
  2022-04-21  6:54 [PATCH] riscv: dts: fu540-c000: fix duplicated dma compatible Krzysztof Kozlowski
  2022-04-21  7:46 ` Bin Meng
@ 2022-04-26  7:53 ` Krzysztof Kozlowski
  2022-04-26  7:55   ` Krzysztof Kozlowski
  1 sibling, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-26  7:53 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Zong Li, Conor Dooley, Bin Meng, devicetree,
	linux-riscv, linux-kernel

On 21/04/2022 08:54, Krzysztof Kozlowski wrote:
> Remove duplicated compatible to fix error:
> 
>   u540-c000.dtsi:171.4-42: ERROR (duplicate_property_names): /soc/dma@3000000:compatible: Duplicate property name
> 
> Fixes: 7eba954a8de8 ("riscv: dts: Add dma-channels property and modify compatible")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Hi everyone,

This is an error which causes compilation to fail. Such patches should
be picked up faster than later, because it breaks various builds.

I'll take it via my tree.

Best regards,
Krzysztof

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

* Re: [PATCH] riscv: dts: fu540-c000: fix duplicated dma compatible
  2022-04-26  7:53 ` Krzysztof Kozlowski
@ 2022-04-26  7:55   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-04-26  7:55 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Zong Li, Conor Dooley, Bin Meng, devicetree,
	linux-riscv, linux-kernel

On 26/04/2022 09:53, Krzysztof Kozlowski wrote:
> On 21/04/2022 08:54, Krzysztof Kozlowski wrote:
>> Remove duplicated compatible to fix error:
>>
>>   u540-c000.dtsi:171.4-42: ERROR (duplicate_property_names): /soc/dma@3000000:compatible: Duplicate property name
>>
>> Fixes: 7eba954a8de8 ("riscv: dts: Add dma-channels property and modify compatible")
>> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> 
> Hi everyone,
> 
> This is an error which causes compilation to fail. Such patches should
> be picked up faster than later, because it breaks various builds.
> 
> I'll take it via my tree.

Ah, it seems Palmer rebased his tree after it got accepted to next, so
patch can be dropped.


Best regards,
Krzysztof

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

end of thread, other threads:[~2022-04-26  7:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-21  6:54 [PATCH] riscv: dts: fu540-c000: fix duplicated dma compatible Krzysztof Kozlowski
2022-04-21  7:46 ` Bin Meng
2022-04-26  7:53 ` Krzysztof Kozlowski
2022-04-26  7:55   ` Krzysztof Kozlowski

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