aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/of_fdt.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/of_fdt.h')
-rw-r--r--include/linux/of_fdt.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h
index 7bbf5b328438..70c5b736f0a3 100644
--- a/include/linux/of_fdt.h
+++ b/include/linux/of_fdt.h
@@ -58,6 +58,17 @@ struct boot_param_header {
58}; 58};
59 59
60#if defined(CONFIG_OF_FLATTREE) 60#if defined(CONFIG_OF_FLATTREE)
61
62/* For scanning an arbitrary device-tree at any time */
63extern char *of_fdt_get_string(struct boot_param_header *blob, u32 offset);
64extern void *of_fdt_get_property(struct boot_param_header *blob,
65 unsigned long node,
66 const char *name,
67 unsigned long *size);
68extern int of_fdt_is_compatible(struct boot_param_header *blob,
69 unsigned long node,
70 const char *compat);
71
61/* TBD: Temporary export of fdt globals - remove when code fully merged */ 72/* TBD: Temporary export of fdt globals - remove when code fully merged */
62extern int __initdata dt_root_addr_cells; 73extern int __initdata dt_root_addr_cells;
63extern int __initdata dt_root_size_cells; 74extern int __initdata dt_root_size_cells;