From: Marek BehĂșn Date: Fri, 22 Oct 2021 13:47:19 +0000 (+0200) Subject: env: nowhere: Cosmetic fix X-Git-Tag: v2022.01~65^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9fc310621942d75a0865e25af6933eaed55d2337;p=platform%2Fkernel%2Fu-boot.git env: nowhere: Cosmetic fix Use spaces instead of tabs in assignments, since there are no lines to align assignment values to. Signed-off-by: Marek BehĂșn Reviewed-by: Simon Glass --- diff --git a/env/nowhere.c b/env/nowhere.c index dc93b6f..9ebc357 100644 --- a/env/nowhere.c +++ b/env/nowhere.c @@ -22,7 +22,7 @@ DECLARE_GLOBAL_DATA_PTR; */ static int env_nowhere_init(void) { - gd->env_valid = ENV_INVALID; + gd->env_valid = ENV_INVALID; return 0; } @@ -37,7 +37,7 @@ static int env_nowhere_load(void) if (!IS_ENABLED(CONFIG_SPL_BUILD)) env_set_default(NULL, 0); - gd->env_valid = ENV_INVALID; + gd->env_valid = ENV_INVALID; return 0; }