Style fixes

This commit is contained in:
François Revol
2013-10-15 22:17:55 +02:00
parent b55cb439e7
commit 3f92e864a1
+4 -3
View File
@@ -190,7 +190,8 @@ start_raw(int argc, const char **argv)
args.arguments_count = --argc;
}
// if we get passed a uimage, try to find the third blob only if we do not have FDT data yet
// if we get passed a uimage, try to find the third blob
// only if we do not have FDT data yet
if (gUImage != NULL
&& !gFDT
&& image_multi_getimg(gUImage, 2,
@@ -234,8 +235,8 @@ start_raw(int argc, const char **argv)
if (initrd_end > initrd_start) {
args.platform.boot_tgz_data = (void *)initrd_start;
args.platform.boot_tgz_size = initrd_end - initrd_start;
dprintf("Found boot tgz from FDT @ %p, %" B_PRIu32 " bytes\n",
args.platform.boot_tgz_data, args.platform.boot_tgz_size);
dprintf("Found boot tgz from FDT @ %p, %" B_PRIu32 " bytes\n",
args.platform.boot_tgz_data, args.platform.boot_tgz_size);
}
prop = fdt_getprop(gFDT, node, "bootargs", &len);
if (prop) {