Refactor linker-generated arrays
[oweals/u-boot.git] / board / amcc / acadia / cmd_acadia.c
index d47cf1af5742856b00b85341b191c0f0f37f830a..6936e5104020b78fa785a1d60d5cbf0413977b16 100644 (file)
@@ -38,16 +38,14 @@ static u8 boot_267_nand[] = {
        0x00, 0x00, 0x00, 0x00
 };
 
-static int do_bootstrap(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
+static int do_bootstrap(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 {
        u8 chip;
        u8 *buf;
        int cpu_freq;
 
-       if (argc < 3) {
-               cmd_usage(cmdtp);
-               return 1;
-       }
+       if (argc < 3)
+               return cmd_usage(cmdtp);
 
        cpu_freq = simple_strtol(argv[1], NULL, 10);
        if (cpu_freq != 267) {
@@ -97,5 +95,5 @@ static int do_bootstrap(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 U_BOOT_CMD(
        bootstrap,      3,      0,      do_bootstrap,
        "program the I2C bootstrap EEPROM",
-       "<cpu-freq> <nor|nand> - program the I2C bootstrap EEPROM\n"
-       );
+       "<cpu-freq> <nor|nand> - program the I2C bootstrap EEPROM"
+);