Re: [PATCH 02/29] mmc: env: Unify the U_BOOT_ENV_LOCATION conditions

2023-11-21 Thread Tom Rini
On Sun, Nov 19, 2023 at 07:49:32AM -0700, Simon Glass wrote: > Hi Heinrich, > > On Wed, 15 Nov 2023 at 03:02, Heinrich Schuchardt wrote: > > > > On 11/12/23 01:08, Simon Glass wrote: > > > The declaration of U_BOOT_ENV_LOCATION() uses a different #ifdef > > > condition from the code it calls.

Re: [PATCH 02/29] mmc: env: Unify the U_BOOT_ENV_LOCATION conditions

2023-11-19 Thread Simon Glass
Hi Heinrich, On Wed, 15 Nov 2023 at 03:02, Heinrich Schuchardt wrote: > > On 11/12/23 01:08, Simon Glass wrote: > > The declaration of U_BOOT_ENV_LOCATION() uses a different #ifdef > > condition from the code it calls. Use the same condition to avoid a > > build warning if CONFIG_CMD_SAVEENV is

Re: [PATCH 02/29] mmc: env: Unify the U_BOOT_ENV_LOCATION conditions

2023-11-15 Thread Heinrich Schuchardt
On 11/12/23 01:08, Simon Glass wrote: The declaration of U_BOOT_ENV_LOCATION() uses a different #ifdef condition from the code it calls. Use the same condition to avoid a build warning if CONFIG_CMD_SAVEENV is disabled. Signed-off-by: Simon Glass --- env/mmc.c | 2 +- 1 file changed, 1

[PATCH 02/29] mmc: env: Unify the U_BOOT_ENV_LOCATION conditions

2023-11-11 Thread Simon Glass
The declaration of U_BOOT_ENV_LOCATION() uses a different #ifdef condition from the code it calls. Use the same condition to avoid a build warning if CONFIG_CMD_SAVEENV is disabled. Signed-off-by: Simon Glass --- env/mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git