diff options
author | Eduard Strehlau <eduard@lionizers.com> | 2023-06-27 13:57:49 -0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-29 09:55:50 -0400 |
commit | 5fa30f2351ac3c0458069896bc868eae927df410 (patch) | |
tree | a9a6695b7e22d91752fe310bf19ac5847e3b2f7b | |
parent | b042cebede960c3ecf428c438efce0e80865f953 (diff) | |
download | u-boot-5fa30f2351ac3c0458069896bc868eae927df410.zip u-boot-5fa30f2351ac3c0458069896bc868eae927df410.tar.gz u-boot-5fa30f2351ac3c0458069896bc868eae927df410.tar.bz2 |
smegw01: Fix wrong symbol overrideWIP/29Jun2023
board_mmc_get_env_part() is not called as the default implementation
of mmc_get_env_part() is used.
Fix this problem by directly calling mmc_get_env_part() instead.
Signed-off-by: Eduard Strehlau <eduard@lionizers.com>
Signed-off-by: Fabio Estevam <festevam@denx.de>
-rw-r--r-- | board/storopack/smegw01/smegw01.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/storopack/smegw01/smegw01.c b/board/storopack/smegw01/smegw01.c index 20c0970..7b2c50a 100644 --- a/board/storopack/smegw01/smegw01.c +++ b/board/storopack/smegw01/smegw01.c @@ -102,7 +102,7 @@ int board_late_init(void) return 0; } -uint board_mmc_get_env_part(struct mmc *mmc) +uint mmc_get_env_part(struct mmc *mmc) { uint part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config); |