* [PATCH 1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property
@ 2026-02-26 14:48 Fabio Estevam
2026-02-26 14:48 ` [PATCH 2/2] ARM: dts: rockchip: rk3288-veyron: Fix the Bluetooth node name Fabio Estevam
2026-03-02 11:39 ` [PATCH 1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property Heiko Stuebner
0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2026-02-26 14:48 UTC (permalink / raw)
To: heiko
Cc: robh, krzk+dt, conor+dt, devicetree, linux-arm-kernel,
linux-rockchip, linux-kernel, Fabio Estevam
The 'regulator-suspend-mem-disabled' property is not documented nor used
anywhere.
Remove this invalid property.
This fixes the following dt-schema warning:
('regulator-suspend-mem-disabled' was unexpected)
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
arch/arm/boot/dts/rockchip/rk3288-veyron-brain.dts | 2 --
arch/arm/boot/dts/rockchip/rk3288-veyron-mickey.dts | 2 --
2 files changed, 4 deletions(-)
diff --git a/arch/arm/boot/dts/rockchip/rk3288-veyron-brain.dts b/arch/arm/boot/dts/rockchip/rk3288-veyron-brain.dts
index ade9cc291813..d7790eebfdcd 100644
--- a/arch/arm/boot/dts/rockchip/rk3288-veyron-brain.dts
+++ b/arch/arm/boot/dts/rockchip/rk3288-veyron-brain.dts
@@ -91,14 +91,12 @@ vdd10_lcd: LDO_REG7 {
regulator-min-microvolt = <1000000>;
regulator-max-microvolt = <1000000>;
regulator-name = "vdd10_lcd";
- regulator-suspend-mem-disabled;
};
vcc18_hdmi: SWITCH_REG2 {
regulator-always-on;
regulator-boot-on;
regulator-name = "vcc18_hdmi";
- regulator-suspend-mem-disabled;
};
};
};
diff --git a/arch/arm/boot/dts/rockchip/rk3288-veyron-mickey.dts b/arch/arm/boot/dts/rockchip/rk3288-veyron-mickey.dts
index d665c3e8862c..20fe84683928 100644
--- a/arch/arm/boot/dts/rockchip/rk3288-veyron-mickey.dts
+++ b/arch/arm/boot/dts/rockchip/rk3288-veyron-mickey.dts
@@ -246,7 +246,6 @@ vdd10_lcd: LDO_REG7 {
regulator-min-microvolt = <1000000>;
regulator-max-microvolt = <1000000>;
regulator-name = "vdd10_lcd";
- regulator-suspend-mem-disabled;
};
vcc18_lcd: LDO_REG8 {
@@ -255,7 +254,6 @@ vcc18_lcd: LDO_REG8 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-name = "vcc18_lcd";
- regulator-suspend-mem-disabled;
};
};
};
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] ARM: dts: rockchip: rk3288-veyron: Fix the Bluetooth node name
2026-02-26 14:48 [PATCH 1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property Fabio Estevam
@ 2026-02-26 14:48 ` Fabio Estevam
2026-03-02 11:39 ` [PATCH 1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property Heiko Stuebner
1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2026-02-26 14:48 UTC (permalink / raw)
To: heiko
Cc: robh, krzk+dt, conor+dt, devicetree, linux-arm-kernel,
linux-rockchip, linux-kernel, Fabio Estevam
Node names should be generic, so use 'bluetooth' as the node name.
This fixes the following dt-schema warning:
'btmrvl@2' does not match '^bluetooth(@.*)?$'
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
arch/arm/boot/dts/rockchip/rk3288-veyron-fievel.dts | 2 +-
arch/arm/boot/dts/rockchip/rk3288-veyron-jaq.dts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boot/dts/rockchip/rk3288-veyron-fievel.dts b/arch/arm/boot/dts/rockchip/rk3288-veyron-fievel.dts
index 6a0844e16279..26817848c154 100644
--- a/arch/arm/boot/dts/rockchip/rk3288-veyron-fievel.dts
+++ b/arch/arm/boot/dts/rockchip/rk3288-veyron-fievel.dts
@@ -177,7 +177,7 @@ &sdio0 {
#address-cells = <1>;
#size-cells = <0>;
- btmrvl: btmrvl@2 {
+ btmrvl: bluetooth@2 {
compatible = "marvell,sd8897-bt";
reg = <2>;
interrupt-parent = <&gpio4>;
diff --git a/arch/arm/boot/dts/rockchip/rk3288-veyron-jaq.dts b/arch/arm/boot/dts/rockchip/rk3288-veyron-jaq.dts
index 0d4c50e05558..cba2898f8b7d 100644
--- a/arch/arm/boot/dts/rockchip/rk3288-veyron-jaq.dts
+++ b/arch/arm/boot/dts/rockchip/rk3288-veyron-jaq.dts
@@ -48,7 +48,7 @@ &sdio0 {
#address-cells = <1>;
#size-cells = <0>;
- btmrvl: btmrvl@2 {
+ btmrvl: bluetooth@2 {
compatible = "marvell,sd8897-bt";
reg = <2>;
interrupt-parent = <&gpio4>;
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property
2026-02-26 14:48 [PATCH 1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property Fabio Estevam
2026-02-26 14:48 ` [PATCH 2/2] ARM: dts: rockchip: rk3288-veyron: Fix the Bluetooth node name Fabio Estevam
@ 2026-03-02 11:39 ` Heiko Stuebner
1 sibling, 0 replies; 3+ messages in thread
From: Heiko Stuebner @ 2026-03-02 11:39 UTC (permalink / raw)
To: Fabio Estevam
Cc: Heiko Stuebner, robh, krzk+dt, conor+dt, devicetree,
linux-arm-kernel, linux-rockchip, linux-kernel
On Thu, 26 Feb 2026 11:48:41 -0300, Fabio Estevam wrote:
> The 'regulator-suspend-mem-disabled' property is not documented nor used
> anywhere.
>
> Remove this invalid property.
>
> This fixes the following dt-schema warning:
>
> [...]
Applied, thanks!
[1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property
commit: 56e224f848c4e2a6f758bc142ae9d293544adbae
[2/2] ARM: dts: rockchip: rk3288-veyron: Fix the Bluetooth node name
commit: 801d1afc6b6cdfb67b0098a795d2130ae0f775a1
Best regards,
--
Heiko Stuebner <heiko@sntech.de>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-02 11:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-26 14:48 [PATCH 1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property Fabio Estevam
2026-02-26 14:48 ` [PATCH 2/2] ARM: dts: rockchip: rk3288-veyron: Fix the Bluetooth node name Fabio Estevam
2026-03-02 11:39 ` [PATCH 1/2] ARM: dts: rockchip: rk3288-veyron: Remove invalid property Heiko Stuebner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox