]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
rockchip: Ensure device settings is defined before rk3568_common.h
authorJonas Karlman <jonas@kwiboo.se>
Sun, 6 Apr 2025 00:24:25 +0000 (00:24 +0000)
committerKever Yang <kever.yang@rock-chips.com>
Wed, 23 Apr 2025 14:12:02 +0000 (22:12 +0800)
Ensure ROCKCHIP_DEVICE_SETTINGS is defined before including
rk3568_common.h in board include/configs files.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
include/configs/anbernic-rgxx3-rk3566.h
include/configs/evb_rk3568.h
include/configs/powkiddy-x55-rk3566.h

index 3c4ea4e7d8433092fda8f0ecdcca9a818d2020f4..3d9e05a976a54fd6fce25ba6004ff7383ebee972 100644 (file)
@@ -3,10 +3,10 @@
 #ifndef __ANBERNIC_RGXX3_RK3566_H
 #define __ANBERNIC_RGXX3_RK3566_H
 
-#include <configs/rk3568_common.h>
-
 #define ROCKCHIP_DEVICE_SETTINGS \
                        "stdout=serial,vidconsole\0" \
                        "stderr=serial,vidconsole\0"
 
+#include <configs/rk3568_common.h>
+
 #endif
index a0f2383bf2f282e3e49b5413a30c3f97462c20bd..9070160cf58d08abbd5cd59ca83d9eb0fd31c11e 100644 (file)
@@ -6,10 +6,10 @@
 #ifndef __EVB_RK3568_H
 #define __EVB_RK3568_H
 
-#include <configs/rk3568_common.h>
-
 #define ROCKCHIP_DEVICE_SETTINGS \
                        "stdout=serial,vidconsole\0" \
                        "stderr=serial,vidconsole\0"
 
+#include <configs/rk3568_common.h>
+
 #endif
index 4b25c6a8774000c37659cd15aa2a6ef93ae08356..8ace435434fc72043f53c6626cc5b0b0753e0c6b 100644 (file)
@@ -3,10 +3,10 @@
 #ifndef __POWKIDDY_X55_RK3566_H
 #define __POWKIDDY_X55_RK3566_H
 
-#include <configs/rk3568_common.h>
-
 #define ROCKCHIP_DEVICE_SETTINGS \
                        "stdout=serial,vidconsole\0" \
                        "stderr=serial,vidconsole\0"
 
+#include <configs/rk3568_common.h>
+
 #endif