mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
env: Drop the env_name_spec global
Add a name to the driver and use that instead of the global variable declared by each driver. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
7938822a6b
commit
ac358beb85
17 changed files with 32 additions and 32 deletions
3
env/sf.c
vendored
3
env/sf.c
vendored
|
@ -48,8 +48,6 @@ static ulong env_new_offset = CONFIG_ENV_OFFSET_REDUND;
|
|||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
char *env_name_spec = "SPI Flash";
|
||||
|
||||
static struct spi_flash *env_flash;
|
||||
|
||||
static int setup_flash_device(void)
|
||||
|
@ -346,6 +344,7 @@ out:
|
|||
|
||||
U_BOOT_ENV_LOCATION(sf) = {
|
||||
.location = ENVL_SPI_FLASH,
|
||||
ENV_NAME("SPI Flash")
|
||||
.load = env_sf_load,
|
||||
#ifdef CMD_SAVEENV
|
||||
.save = env_save_ptr(env_sf_save),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue