[U-Boot] [PATCH] env_onenand.c: Add missing cast in saveenv()

Tom Rini trini at ti.com
Thu Apr 4 20:20:21 CEST 2013


With the changes in 60d7d5a we need to cast env_buf here.

Signed-off-by: Tom Rini <trini at ti.com>
---
 common/env_onenand.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/env_onenand.c b/common/env_onenand.c
index 6fd5613..e4d5b28 100644
--- a/common/env_onenand.c
+++ b/common/env_onenand.c
@@ -82,7 +82,7 @@ void env_relocate_spec(void)
 
 int saveenv(void)
 {
-	env_t	*env_new = env_buf;
+	env_t	*env_new = (env_t *)env_buf;
 	ssize_t	len;
 	char	*res;
 	struct mtd_info *mtd = &onenand_mtd;
-- 
1.7.9.5



More information about the U-Boot mailing list