[U-Boot] [PATCH] env: sata: Fix saveenv issue
Ye Li
ye.li at nxp.com
Mon Jan 7 09:22:35 UTC 2019
Wrong env buffer was passed into sata write function, cause the saveenv
not work.
Signed-off-by: Ye Li <ye.li at 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;
}
--
2.7.4
More information about the U-Boot
mailing list