From: HeungJun Kim Date: Tue, 30 Jun 2009 05:42:22 +0000 (+0900) Subject: env_onenand: change env_address type from unsigned long to loff_t X-Git-Tag: v2009.08-rc1~114^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2e8a6f551cba550e9220dca4d8504066203b1f74;p=oweals%2Fu-boot.git env_onenand: change env_address type from unsigned long to loff_t 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 Signed-off-by: HeungJun, Kim Signed-off-by: Scott Wood --- diff --git a/common/env_onenand.c b/common/env_onenand.c index ed77051724..48089a9603 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;