From: Patrick Delaunay Date: Tue, 28 Jul 2020 09:51:16 +0000 (+0200) Subject: env: sf: avoid space in backend name X-Git-Tag: v2020.10~86^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22140d16e56cec3c2ea17a0abaf3d061ccbee039;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/env/sf.c b/env/sf.c index 3e524f2..a059561 100644 --- a/env/sf.c +++ b/env/sf.c @@ -305,7 +305,7 @@ static int env_sf_init(void) U_BOOT_ENV_LOCATION(sf) = { .location = ENVL_SPI_FLASH, - ENV_NAME("SPI Flash") + ENV_NAME("SPIFlash") .load = env_sf_load, .save = CONFIG_IS_ENABLED(SAVEENV) ? ENV_SAVE_PTR(env_sf_save) : NULL, #if defined(INITENV) && (CONFIG_ENV_ADDR != 0x0)