summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeijie Gao <[email protected]>2025-01-17 17:16:33 +0800
committerTom Rini <[email protected]>2025-01-23 12:11:49 -0600
commit92090b92fab207250d5b8d5a4a36aa34f5a91f19 (patch)
tree60a7d4f11f6ea795d6449f2bf879562973e0b048
parenta3b71cc6f5cc74d4edc5808790a3d2999ea3f7fe (diff)
board: mediatek: mt7622: remove board_late_init
The function board_late_init defined for mt7622 is useless now. Just remove it. Signed-off-by: Weijie Gao <[email protected]>
-rw-r--r--board/mediatek/mt7622/mt7622_rfb.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/board/mediatek/mt7622/mt7622_rfb.c b/board/mediatek/mt7622/mt7622_rfb.c
index e7f492a13bc..9d24c8cd412 100644
--- a/board/mediatek/mt7622/mt7622_rfb.c
+++ b/board/mediatek/mt7622/mt7622_rfb.c
@@ -15,10 +15,3 @@ int board_init(void)
{
return 0;
}
-
-int board_late_init(void)
-{
- gd->env_valid = 1; //to load environment variable from persistent store
- env_relocate();
- return 0;
-}