1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

env: Drop CONFIG_ENV_IS_IN_DATAFLASH

Last user of this option went away in commit:

fdc7718999 ("board: usb_a9263: Update to support DT and DM")

Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
This commit is contained in:
Tuomas Tynkkynen
2017-10-10 21:59:40 +03:00
committed by Tom Rini
parent c005f7edbb
commit 7b7341d7f3
7 changed files with 2 additions and 98 deletions

4
env/env.c vendored
View File

@@ -28,9 +28,7 @@ static struct env_driver *env_driver_lookup(enum env_location loc)
static enum env_location env_get_default_location(void)
{
if IS_ENABLED(CONFIG_ENV_IS_IN_DATAFLASH)
return ENVL_DATAFLASH;
else if IS_ENABLED(CONFIG_ENV_IS_IN_EEPROM)
if IS_ENABLED(CONFIG_ENV_IS_IN_EEPROM)
return ENVL_EEPROM;
else if IS_ENABLED(CONFIG_ENV_IS_IN_FAT)
return ENVL_FAT;