[U-Boot] [PATCH] MTD: change env_address type from unsigned long to loff_t

HeungJun Kim riverful.kim at gmail.com
Tue Jun 30 07:42:22 CEST 2009


If use the onenand boot, the env_relocate_spec() calls mtd->read(),
and the type of the argument #2 of mtd->read() was changed to loff_t.
But, the "env_addr" type is still unsigned long, thus this patch change
the type from unsigned long to loff_t.

Acked-by: Kyungmin Park <kyungmin.park at samsung.com>
Signed-off-by: HeungJun, Kim <riverful.kim at samsung.com>

---

 common/env_onenand.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/common/env_onenand.c b/common/env_onenand.c
index ed77051..48089a9 100644
--- a/common/env_onenand.c
+++ b/common/env_onenand.c
@@ -58,7 +58,7 @@ uchar env_get_char_spec(int index)

 void env_relocate_spec(void)
 {
-	unsigned long env_addr;
+	loff_t env_addr;
 	int use_default = 0;
 	size_t retlen;

-- 
1.5.6.3


More information about the U-Boot mailing list