]> git.sur5r.net Git - u-boot/blobdiff - board/zeus/update.c
tools: add kwboot binary to .gitignore file
[u-boot] / board / zeus / update.c
index ce1f34fee2b968534d1726d665890f28c150f01b..141f14b2b0911c000de5b64a5aec0203fb53fcd3 100644 (file)
@@ -26,7 +26,7 @@
 #include <command.h>
 #include <asm/processor.h>
 #include <asm/io.h>
-#include <asm/gpio.h>
+#include <asm/ppc4xx-gpio.h>
 #include <i2c.h>
 
 #if defined(CONFIG_ZEUS)
@@ -91,7 +91,7 @@ static int update_boot_eeprom(void)
        return 0;
 }
 
-int do_update_boot_eeprom(cmd_tbl_t* cmdtp, int flag, int argc, char* argv[])
+int do_update_boot_eeprom(cmd_tbl_t* cmdtp, int flag, int argc, char * const argv[])
 {
        return update_boot_eeprom();
 }
@@ -99,7 +99,7 @@ int do_update_boot_eeprom(cmd_tbl_t* cmdtp, int flag, int argc, char* argv[])
 U_BOOT_CMD (
        update_boot_eeprom, 1, 1, do_update_boot_eeprom,
        "update boot eeprom content",
-       NULL
+       ""
 );
 
 #endif