diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2025-06-09 21:26:39 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-20 12:15:08 -0600 |
commit | 0f44d5549ed814744b95b2450fbacfa14192587d (patch) | |
tree | 06a58b3990c592f4e6b306a176b1df032b5d2041 /board/st/stm32mp2/stm32mp2.c | |
parent | 123682c7651d187113455cb01d396825c08619c4 (diff) |
env: Rename SYS_MMC_ENV_DEV to ENV_MMC_DEVICE_INDEX
Rename the variable and add ENV_ prefix, so that all configuration
options which are related to environment would have an CONFIG_ENV_
prefix. No functional change.
Use ENV_MMC_DEVICE_INDEX to clarify this is the SD/MMC device
index, a number, as enumerated by U-Boot. Update the help text
accordingly.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'board/st/stm32mp2/stm32mp2.c')
-rw-r--r-- | board/st/stm32mp2/stm32mp2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/stm32mp2/stm32mp2.c b/board/st/stm32mp2/stm32mp2.c index 2547f2e4bb7..a72056e12d6 100644 --- a/board/st/stm32mp2/stm32mp2.c +++ b/board/st/stm32mp2/stm32mp2.c @@ -183,7 +183,7 @@ int mmc_get_boot(void) int mmc_get_env_dev(void) { - const int mmc_env_dev = CONFIG_IS_ENABLED(ENV_IS_IN_MMC, (CONFIG_SYS_MMC_ENV_DEV), (-1)); + const int mmc_env_dev = CONFIG_IS_ENABLED(ENV_IS_IN_MMC, (CONFIG_ENV_MMC_DEVICE_INDEX), (-1)); if (mmc_env_dev >= 0) return mmc_env_dev; |