aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/of_fdt.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h
index d1a79f3da789..81231e04e8f3 100644
--- a/include/linux/of_fdt.h
+++ b/include/linux/of_fdt.h
@@ -62,15 +62,13 @@ extern struct boot_param_header *initial_boot_params;
62 62
63/* For scanning the flat device-tree at boot time */ 63/* For scanning the flat device-tree at boot time */
64extern char *find_flat_dt_string(u32 offset); 64extern char *find_flat_dt_string(u32 offset);
65extern int __init of_scan_flat_dt(int (*it)(unsigned long node, 65extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname,
66 const char *uname, int depth, 66 int depth, void *data),
67 void *data), 67 void *data);
68 void *data); 68extern void *of_get_flat_dt_prop(unsigned long node, const char *name,
69extern void __init *of_get_flat_dt_prop(unsigned long node, const char *name, 69 unsigned long *size);
70 unsigned long *size); 70extern int of_flat_dt_is_compatible(unsigned long node, const char *name);
71extern int __init of_flat_dt_is_compatible(unsigned long node, 71extern unsigned long of_get_flat_dt_root(void);
72 const char *name);
73extern unsigned long __init of_get_flat_dt_root(void);
74 72
75/* Other Prototypes */ 73/* Other Prototypes */
76extern void finish_device_tree(void); 74extern void finish_device_tree(void);