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>
 
 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");