[U-Boot] [PATCH] env: sata: Fix saveenv issue

Wrong env buffer was passed into sata write function, cause the saveenv not work.
Signed-off-by: Ye Li ye.li@nxp.com --- env/sata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/env/sata.c b/env/sata.c index 59aedf4..a2ff5c6 100644 --- a/env/sata.c +++ b/env/sata.c @@ -65,7 +65,7 @@ static int env_sata_save(void) return 1;
printf("Writing to SATA(%d)...", env_sata); - if (write_env(sata, CONFIG_ENV_SIZE, CONFIG_ENV_OFFSET, &env_new)) { + if (write_env(sata, CONFIG_ENV_SIZE, CONFIG_ENV_OFFSET, (u_char *)env_new)) { puts("failed\n"); return 1; }

On Mon, Jan 07, 2019 at 09:22:35AM +0000, Ye Li wrote:
Wrong env buffer was passed into sata write function, cause the saveenv not work.
Signed-off-by: Ye Li ye.li@nxp.com
Applied to u-boot/master, thanks!
participants (2)
-
Tom Rini
-
Ye Li