From 3f92e864a1b468d7e87cd763be515c44d463d269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Tue, 15 Oct 2013 22:17:55 +0200 Subject: [PATCH] Style fixes --- src/system/boot/platform/u-boot/start.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/system/boot/platform/u-boot/start.cpp b/src/system/boot/platform/u-boot/start.cpp index bdec391c36..2f6a63774c 100644 --- a/src/system/boot/platform/u-boot/start.cpp +++ b/src/system/boot/platform/u-boot/start.cpp @@ -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) {