* [PATCH] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes
@ 2024-01-22 13:23 Rafał Miłecki
2024-01-22 17:12 ` Matthias Brugger
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Rafał Miłecki @ 2024-01-22 13:23 UTC (permalink / raw)
To: Matthias Brugger, AngeloGioacchino Del Regno
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree,
linux-arm-kernel, linux-mediatek, Rafał Miłecki
From: Rafał Miłecki <rafal@milecki.pl>
This fixes:
arch/arm64/boot/dts/mediatek/mt7622-rfb1.dtb: /: memory@40000000: 'device_type' is a required property
from schema $id: http://devicetree.org/schemas/memory.yaml#
arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dtb: /: memory@40000000: 'device_type' is a required property
from schema $id: http://devicetree.org/schemas/memory.yaml#
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
---
arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts | 1 +
arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts | 1 +
2 files changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts b/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
index a1f42048dcc7..850b3e277368 100644
--- a/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
+++ b/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
@@ -75,6 +75,7 @@ led-1 {
memory@40000000 {
reg = <0 0x40000000 0 0x40000000>;
+ device_type = "memory";
};
reg_1p8v: regulator-1p8v {
diff --git a/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts b/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
index 2dc1bdc74e21..5c26021fc4cf 100644
--- a/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
+++ b/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
@@ -57,6 +57,7 @@ key-wps {
memory@40000000 {
reg = <0 0x40000000 0 0x20000000>;
+ device_type = "memory";
};
reg_1p8v: regulator-1p8v {
--
2.35.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes
2024-01-22 13:23 [PATCH] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes Rafał Miłecki
@ 2024-01-22 17:12 ` Matthias Brugger
2024-01-22 17:23 ` AngeloGioacchino Del Regno
2024-02-12 12:42 ` AngeloGioacchino Del Regno
2 siblings, 0 replies; 4+ messages in thread
From: Matthias Brugger @ 2024-01-22 17:12 UTC (permalink / raw)
To: Rafał Miłecki, AngeloGioacchino Del Regno
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree,
linux-arm-kernel, linux-mediatek, Rafał Miłecki
On 22/01/2024 14:23, Rafał Miłecki wrote:
> From: Rafał Miłecki <rafal@milecki.pl>
>
> This fixes:
> arch/arm64/boot/dts/mediatek/mt7622-rfb1.dtb: /: memory@40000000: 'device_type' is a required property
> from schema $id: http://devicetree.org/schemas/memory.yaml#
> arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dtb: /: memory@40000000: 'device_type' is a required property
> from schema $id: http://devicetree.org/schemas/memory.yaml#
>
> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
> ---
> arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts | 1 +
> arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts b/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
> index a1f42048dcc7..850b3e277368 100644
> --- a/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
> +++ b/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
> @@ -75,6 +75,7 @@ led-1 {
>
> memory@40000000 {
> reg = <0 0x40000000 0 0x40000000>;
> + device_type = "memory";
> };
>
> reg_1p8v: regulator-1p8v {
> diff --git a/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts b/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
> index 2dc1bdc74e21..5c26021fc4cf 100644
> --- a/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
> +++ b/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
> @@ -57,6 +57,7 @@ key-wps {
>
> memory@40000000 {
> reg = <0 0x40000000 0 0x20000000>;
> + device_type = "memory";
> };
>
> reg_1p8v: regulator-1p8v {
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes
2024-01-22 13:23 [PATCH] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes Rafał Miłecki
2024-01-22 17:12 ` Matthias Brugger
@ 2024-01-22 17:23 ` AngeloGioacchino Del Regno
2024-02-12 12:42 ` AngeloGioacchino Del Regno
2 siblings, 0 replies; 4+ messages in thread
From: AngeloGioacchino Del Regno @ 2024-01-22 17:23 UTC (permalink / raw)
To: Rafał Miłecki, Matthias Brugger
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree,
linux-arm-kernel, linux-mediatek, Rafał Miłecki
Il 22/01/24 14:23, Rafał Miłecki ha scritto:
> From: Rafał Miłecki <rafal@milecki.pl>
>
> This fixes:
> arch/arm64/boot/dts/mediatek/mt7622-rfb1.dtb: /: memory@40000000: 'device_type' is a required property
> from schema $id: http://devicetree.org/schemas/memory.yaml#
> arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dtb: /: memory@40000000: 'device_type' is a required property
> from schema $id: http://devicetree.org/schemas/memory.yaml#
>
> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes
2024-01-22 13:23 [PATCH] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes Rafał Miłecki
2024-01-22 17:12 ` Matthias Brugger
2024-01-22 17:23 ` AngeloGioacchino Del Regno
@ 2024-02-12 12:42 ` AngeloGioacchino Del Regno
2 siblings, 0 replies; 4+ messages in thread
From: AngeloGioacchino Del Regno @ 2024-02-12 12:42 UTC (permalink / raw)
To: Matthias Brugger, Rafał Miłecki
Cc: AngeloGioacchino Del Regno, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, devicetree, linux-arm-kernel, linux-mediatek,
Rafał Miłecki
On Mon, 22 Jan 2024 14:23:57 +0100, Rafał Miłecki wrote:
> This fixes:
> arch/arm64/boot/dts/mediatek/mt7622-rfb1.dtb: /: memory@40000000: 'device_type' is a required property
> from schema $id: http://devicetree.org/schemas/memory.yaml#
> arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dtb: /: memory@40000000: 'device_type' is a required property
> from schema $id: http://devicetree.org/schemas/memory.yaml#
>
>
> [...]
Applied to v6.8-next/dts64, thanks!
[1/1] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes
https://git.kernel.org/mediatek/c/99d100e0
Cheers,
Angelo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-02-12 12:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-22 13:23 [PATCH] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes Rafał Miłecki
2024-01-22 17:12 ` Matthias Brugger
2024-01-22 17:23 ` AngeloGioacchino Del Regno
2024-02-12 12:42 ` AngeloGioacchino Del Regno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox