]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
authorPeter Pearse <peter.pearse@arm.com>
Thu, 15 Nov 2007 08:58:00 +0000 (08:58 +0000)
committerPeter Pearse <peter.pearse@arm.com>
Thu, 15 Nov 2007 08:58:00 +0000 (08:58 +0000)
Remove warnings re onenand_read() & write()

common/env_onenand.c
include/configs/apollon.h [changed mode: 0644->0755]

index 66107f91f17ff027c8b8d58f2ed6bcc23b7eca3c..5888f75d895ec43b71fc3596380d69b75616feff 100644 (file)
@@ -64,7 +64,7 @@ void env_relocate_spec(void)
        DECLARE_GLOBAL_DATA_PTR;
        unsigned long env_addr;
        int use_default = 0;
-       int retlen;
+       size_t retlen;
 
        env_addr = CFG_ENV_ADDR;
        env_addr -= (unsigned long)onenand_chip.base;
@@ -96,7 +96,7 @@ int saveenv(void)
 {
        unsigned long env_addr = CFG_ENV_ADDR;
        struct erase_info instr;
-       int retlen;
+       size_t retlen;
 
        instr.len = CFG_ENV_SIZE;
        instr.addr = env_addr;
old mode 100644 (file)
new mode 100755 (executable)
index 578153c..7727bc3
 #endif
 
 #define        CONFIG_EXTRA_ENV_SETTINGS                                       \
-       "Image=tftp 0x80008000 Image\; go 0x80008000\0"                 \
-       "zImage=tftp 0x80180000 zImage\; go 0x80180000\0"               \
-       "uImage=tftp 0x80180000 uImage\; bootm 0x80180000\0"            \
-       "uboot=tftp 0x80008000 u-boot.bin\; go 0x80008000\0"            \
-       "xloader=tftp 0x80180000 x-load.bin\; cp.w 0x80180000 0x00000400 0x1000\; go 0x00000400\0"      \
-       "syncmode50=mw.w 0x1e442 0xc0c4\; mw 0x6800a060 0xe30d1201\0"   \
-       "syncmode=mw.w 0x1e442 0xe0f4\; mw 0x6800a060 0xe30d1201\0"     \
-       "norboot=cp32 0x18040000 0x80008000 0x200000\; go 0x80008000\0" \
-       "oneboot=onenand read 0x80008000 0x40000 0x200000\; go 0x80008000\0"\
+       "Image=tftp 0x80008000 Image; go 0x80008000\0"                  \
+       "zImage=tftp 0x80180000 zImage; go 0x80180000\0"                \
+       "uImage=tftp 0x80180000 uImage; bootm 0x80180000\0"             \
+       "uboot=tftp 0x80008000 u-boot.bin; go 0x80008000\0"             \
+       "xloader=tftp 0x80180000 x-load.bin; cp.w 0x80180000 0x00000400 0x1000; go 0x00000400\0"        \
+       "syncmode50=mw.w 0x1e442 0xc0c4; mw 0x6800a060 0xe30d1201\0"    \
+       "syncmode=mw.w 0x1e442 0xe0f4; mw 0x6800a060 0xe30d1201\0"      \
+       "norboot=cp32 0x18040000 0x80008000 0x200000; go 0x80008000\0"  \
+       "oneboot=onenand read 0x80008000 0x40000 0x200000; go 0x80008000\0"\
        "onesyncboot=run syncmode oneboot\0"                            \
        "bootcmd=run uboot\0"