diff options
| author | Jonas Karlman <[email protected]> | 2024-04-30 15:30:21 +0000 |
|---|---|---|
| committer | Kever Yang <[email protected]> | 2024-05-07 15:56:08 +0800 |
| commit | 2e1c0024afa1f5605c028b0d418d2e9206de50db (patch) | |
| tree | 9116aa84b2498bc93851124b1c3c02c837d1ad12 | |
| parent | 4e3c7e89d9028cd05978e1bd34fe052922aea4c5 (diff) | |
rockchip: rk3399: Fix bootph prop for vop nodes
The vop nodes should not be included in TPL/SPL control FDT, it should
only be included at U-Boot proper pre-reloc phase.
Change to use bootph-some-ram prop to fix this.
Signed-off-by: Jonas Karlman <[email protected]>
Reviewed-by: Kever Yang <[email protected]>
| -rw-r--r-- | arch/arm/dts/rk3399-u-boot.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/dts/rk3399-u-boot.dtsi b/arch/arm/dts/rk3399-u-boot.dtsi index b9b8d3ee1d9..496f25d9fbf 100644 --- a/arch/arm/dts/rk3399-u-boot.dtsi +++ b/arch/arm/dts/rk3399-u-boot.dtsi @@ -143,9 +143,9 @@ }; &vopb { - bootph-all; + bootph-some-ram; }; &vopl { - bootph-all; + bootph-some-ram; }; |
