Fix boot code revision display (put major/minor in right order)
authorNathael Pajani <nathael.pajani@ed3l.fr>
Thu, 3 Oct 2013 13:15:03 +0000 (15:15 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Thu, 3 Oct 2013 13:15:03 +0000 (15:15 +0200)
isp_commands.c

index 88ada52..1019569 100644 (file)
@@ -270,7 +270,7 @@ int isp_cmd_boot_version(void)
        }
        ver[0] = strtoul(buf, &tmp, 10);
        ver[1] = strtoul(tmp, NULL, 10);
-       printf("Boot code version is %u.%u\n", ver[0], ver[1]);
+       printf("Boot code version is %u.%u\n", ver[1], ver[0]);
 
        return 0;
 }