* [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos
@ 2021-11-02 18:29 John Keeping
2021-11-02 18:29 ` [PATCH 1/2] arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply John Keeping
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: John Keeping @ 2021-11-02 18:29 UTC (permalink / raw)
To: linux-rockchip
Cc: Rob Herring, Heiko Stuebner, Andy Yan, devicetree,
linux-arm-kernel, linux-kernel, John Keeping
The same "vim-supply" typo appears in a couple of DTs. Here are fixes
for both of them.
John Keeping (2):
arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply
arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply
arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dts | 2 +-
arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--
2.33.1
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply
2021-11-02 18:29 [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos John Keeping
@ 2021-11-02 18:29 ` John Keeping
2021-11-02 18:29 ` [PATCH 2/2] arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply John Keeping
2021-11-21 18:52 ` [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos Heiko Stuebner
2 siblings, 0 replies; 4+ messages in thread
From: John Keeping @ 2021-11-02 18:29 UTC (permalink / raw)
To: linux-rockchip
Cc: Rob Herring, Heiko Stuebner, Andy Yan, devicetree,
linux-arm-kernel, linux-kernel, John Keeping
Correct a typo in the vin-supply property. The input supply is
always-on, so this mistake doesn't affect whether the supply is actually
enabled correctly.
Fixes: 4403e1237be3 ("arm64: dts: rockchip: Add devicetree for board roc-rk3308-cc")
Signed-off-by: John Keeping <john@metanate.com>
---
arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dts b/arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dts
index 665b2e69455d..ea6820902ede 100644
--- a/arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dts
@@ -97,7 +97,7 @@ vcc_sd: vcc-sd {
regulator-max-microvolt = <3300000>;
regulator-always-on;
regulator-boot-on;
- vim-supply = <&vcc_io>;
+ vin-supply = <&vcc_io>;
};
vdd_core: vdd-core {
--
2.33.1
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply
2021-11-02 18:29 [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos John Keeping
2021-11-02 18:29 ` [PATCH 1/2] arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply John Keeping
@ 2021-11-02 18:29 ` John Keeping
2021-11-21 18:52 ` [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos Heiko Stuebner
2 siblings, 0 replies; 4+ messages in thread
From: John Keeping @ 2021-11-02 18:29 UTC (permalink / raw)
To: linux-rockchip
Cc: Rob Herring, Heiko Stuebner, Andy Yan, devicetree,
linux-arm-kernel, linux-kernel, John Keeping
Correct a typo in the vin-supply property. The input supply is
always-on, so this mistake doesn't affect whether the supply is actually
enabled correctly.
Fixes: fc702ed49a86 ("arm64: dts: rockchip: Add dts for Leez RK3399 P710 SBC")
Signed-off-by: John Keeping <john@metanate.com>
---
arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts b/arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts
index 7c93f840bc64..e890166e7fd4 100644
--- a/arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts
@@ -55,7 +55,7 @@ vcc3v3_lan: vcc3v3-lan {
regulator-boot-on;
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
- vim-supply = <&vcc3v3_sys>;
+ vin-supply = <&vcc3v3_sys>;
};
vcc3v3_sys: vcc3v3-sys {
--
2.33.1
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos
2021-11-02 18:29 [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos John Keeping
2021-11-02 18:29 ` [PATCH 1/2] arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply John Keeping
2021-11-02 18:29 ` [PATCH 2/2] arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply John Keeping
@ 2021-11-21 18:52 ` Heiko Stuebner
2 siblings, 0 replies; 4+ messages in thread
From: Heiko Stuebner @ 2021-11-21 18:52 UTC (permalink / raw)
To: John Keeping, linux-rockchip
Cc: Heiko Stuebner, linux-arm-kernel, linux-kernel, devicetree,
Andy Yan, Rob Herring
On Tue, 2 Nov 2021 18:29:06 +0000, John Keeping wrote:
> The same "vim-supply" typo appears in a couple of DTs. Here are fixes
> for both of them.
>
> John Keeping (2):
> arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply
> arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply
>
> [...]
Applied, thanks!
[1/2] arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply
commit: 772fb46109f635dd75db20c86b7eaf48efa46cef
[2/2] arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply
commit: 2b454a90e2ccdd6e03f88f930036da4df577be76
Best regards,
--
Heiko Stuebner <heiko@sntech.de>
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-11-21 18:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-02 18:29 [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos John Keeping
2021-11-02 18:29 ` [PATCH 1/2] arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply John Keeping
2021-11-02 18:29 ` [PATCH 2/2] arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply John Keeping
2021-11-21 18:52 ` [PATCH 0/2] arm64: dts: rockchip: fix a couple of vin-supply typos Heiko Stuebner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox