Message ID | 20220130075520.49193-1-alim.akhtar@samsung.com (mailing list archive) |
---|---|
State | Accepted |
Commit | cfeb53aee6e45f2b74fe7e632b48236247f09b3d |
Headers | show |
Series | [1/3] ARM: dts: exynos: update dma nodename for exynos3250 | expand |
On Sun, 30 Jan 2022 13:25:18 +0530, Alim Akhtar wrote: > Currently dma node name does not matches the pl330 > dt schema and make dtbs_check report below warning > > 'pdma@12680000' does not match '^dma-controller(@.*)?$' > > Update the dma node name to match pl330 dt schema > > [...] Squashed into one commit, that's a tiny change in each file. Applied, thanks! [1/3] ARM: dts: exynos: update dma nodename for exynos3250 commit: a5a881a33f8d6d5427a4150ee1a24a8790ada270 [2/3] ARM: dts: exynos: update dma nodename for exynos4 commit: 0e1434e19717309c2c3a0770bd4ef5c3a937fe03 [3/3] ARM: dts: exynos: update dma nodename for exynos5 commit: 51d6d2cb2523c3d979e94efc065a7c88a9c8dd61 Best regards,
>-----Original Message----- >From: Krzysztof Kozlowski [mailto:krzysztof.kozlowski@canonical.com] >Sent: Monday, January 31, 2022 2:29 PM >To: linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org; Alim >Akhtar <alim.akhtar@samsung.com> >Cc: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>; linux-samsung- >soc@vger.kernel.org; devicetree@vger.kernel.org; robh+dt@kernel.org >Subject: Re: [PATCH 1/3] ARM: dts: exynos: update dma nodename for >exynos3250 > >On Sun, 30 Jan 2022 13:25:18 +0530, Alim Akhtar wrote: >> Currently dma node name does not matches the pl330 dt schema and make >> dtbs_check report below warning >> >> 'pdma@12680000' does not match '^dma-controller(@.*)?$' >> >> Update the dma node name to match pl330 dt schema >> >> [...] > >Squashed into one commit, that's a tiny change in each file. > Ok, Thanks Krzysztof. >Applied, thanks! > >[1/3] ARM: dts: exynos: update dma nodename for exynos3250 > commit: a5a881a33f8d6d5427a4150ee1a24a8790ada270 >[2/3] ARM: dts: exynos: update dma nodename for exynos4 > commit: 0e1434e19717309c2c3a0770bd4ef5c3a937fe03 >[3/3] ARM: dts: exynos: update dma nodename for exynos5 > commit: 51d6d2cb2523c3d979e94efc065a7c88a9c8dd61 > >Best regards, >-- >Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
diff --git a/arch/arm/boot/dts/exynos3250.dtsi b/arch/arm/boot/dts/exynos3250.dtsi index a10b789d8acf..ae644315855d 100644 --- a/arch/arm/boot/dts/exynos3250.dtsi +++ b/arch/arm/boot/dts/exynos3250.dtsi @@ -421,7 +421,7 @@ exynos_usbphy: exynos-usbphy@125b0000 { status = "disabled"; }; - pdma0: pdma@12680000 { + pdma0: dma-controller@12680000 { compatible = "arm,pl330", "arm,primecell"; reg = <0x12680000 0x1000>; interrupts = <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>; @@ -432,7 +432,7 @@ pdma0: pdma@12680000 { #dma-requests = <32>; }; - pdma1: pdma@12690000 { + pdma1: dma-controller@12690000 { compatible = "arm,pl330", "arm,primecell"; reg = <0x12690000 0x1000>; interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_HIGH>;
Currently dma node name does not matches the pl330 dt schema and make dtbs_check report below warning 'pdma@12680000' does not match '^dma-controller(@.*)?$' Update the dma node name to match pl330 dt schema Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com> --- arch/arm/boot/dts/exynos3250.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)