arch: riscv: fix logic error in parse_dtb
authorAndreas Schwab <schwab@suse.de>
Thu, 7 Feb 2019 14:44:26 +0000 (15:44 +0100)
committerPalmer Dabbelt <palmer@sifive.com>
Mon, 4 Mar 2019 19:32:14 +0000 (11:32 -0800)
The function early_init_dt_scan returns true if a DTB was detected.

Fixes: 8fd6e05c7463 ("arch: riscv: support kernel command line forcing when no DTB passed")
Signed-off-by: Andreas Schwab <schwab@suse.de>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Reviewed-by: Paul Walmsley <paul.walmsley@sifive.com>
Tested-by: Paul Walmsley <paul.walmsley@sifive.com> # FU540 HiFive-U BBL
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
arch/riscv/kernel/setup.c

index 61c8161..12a16df 100644 (file)
@@ -140,7 +140,7 @@ asmlinkage void __init setup_vm(void)
 
 void __init parse_dtb(unsigned int hartid, void *dtb)
 {
-       if (!early_init_dt_scan(__va(dtb)))
+       if (early_init_dt_scan(__va(dtb)))
                return;
 
        pr_err("No DTB passed to the kernel\n");