]> xenbits.xensource.com Git - people/liuw/xen.git/commitdiff
xen/arm: bootfd: Fix indentation in process_multiboot_node()
authorJulien Grall <julien.grall@arm.com>
Wed, 11 Sep 2019 15:19:42 +0000 (16:19 +0100)
committerStefano Stabellini <sstabellini@kernel.org>
Thu, 12 Sep 2019 16:39:48 +0000 (09:39 -0700)
One line in process_multiboot_node() is using hard tab rather than soft
tab. So fix it!

Signed-off-by: Julien Grall <julien.grall@arm.com>
Reviewed-by: Volodymyr Babchuk <volodymyr_babchuk@epam.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
xen/arch/arm/bootfdt.c

index 258b057f00c01731fce422e8ef2bc62ffb0f032b..623173bc7f3eea6103e204b9ba47e45423a027e3 100644 (file)
@@ -264,7 +264,7 @@ static void __init process_multiboot_node(const void *fdt, int node,
         case 1: kind = BOOTMOD_RAMDISK; break;
         default: break;
         }
-       if ( kind_guess > 1 && has_xsm_magic(start) )
+        if ( kind_guess > 1 && has_xsm_magic(start) )
             kind = BOOTMOD_XSM;
     }