]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blobdiff - scripts/dtc/fstree.c
Merge tag 'nfs-for-4.11-1' of git://git.linux-nfs.org/projects/anna/linux-nfs
[mirror_ubuntu-bionic-kernel.git] / scripts / dtc / fstree.c
index 6d1beec9581d559539773215a66f6eb0e8b51d77..ae7d06c3c49235a54f204316518542a3289e0132 100644 (file)
@@ -79,13 +79,12 @@ static struct node *read_fstree(const char *dirname)
        return tree;
 }
 
-struct boot_info *dt_from_fs(const char *dirname)
+struct dt_info *dt_from_fs(const char *dirname)
 {
        struct node *tree;
 
        tree = read_fstree(dirname);
        tree = name_node(tree, "");
 
-       return build_boot_info(NULL, tree, guess_boot_cpuid(tree));
+       return build_dt_info(DTSF_V1, NULL, tree, guess_boot_cpuid(tree));
 }
-