mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-08 11:02:09 +01:00
env: sf: avoid space in backend name
Remove space in ENV backend name for SPI Flash (SF) to avoid issue with env select command. Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
parent
286fee5062
commit
22140d16e5
2
env/sf.c
vendored
2
env/sf.c
vendored
@ -305,7 +305,7 @@ static int env_sf_init(void)
|
|||||||
|
|
||||||
U_BOOT_ENV_LOCATION(sf) = {
|
U_BOOT_ENV_LOCATION(sf) = {
|
||||||
.location = ENVL_SPI_FLASH,
|
.location = ENVL_SPI_FLASH,
|
||||||
ENV_NAME("SPI Flash")
|
ENV_NAME("SPIFlash")
|
||||||
.load = env_sf_load,
|
.load = env_sf_load,
|
||||||
.save = CONFIG_IS_ENABLED(SAVEENV) ? ENV_SAVE_PTR(env_sf_save) : NULL,
|
.save = CONFIG_IS_ENABLED(SAVEENV) ? ENV_SAVE_PTR(env_sf_save) : NULL,
|
||||||
#if defined(INITENV) && (CONFIG_ENV_ADDR != 0x0)
|
#if defined(INITENV) && (CONFIG_ENV_ADDR != 0x0)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user