aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/of_fdt.h
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2013-08-26 11:22:45 -0500
committerRob Herring <rob.herring@calxeda.com>2013-10-09 11:38:03 -0500
commita8bf7527a2e17ccf1366e67f6ac728327ca34c40 (patch)
tree5454fe053edb11d610d0fd35f4abeff88e076705 /include/linux/of_fdt.h
parentopenrisc: use boot_command_line instead of private cmd_line (diff)
downloadwireguard-linux-a8bf7527a2e17ccf1366e67f6ac728327ca34c40.tar.xz
wireguard-linux-a8bf7527a2e17ccf1366e67f6ac728327ca34c40.zip
of: create unflatten_and_copy_device_tree
Several architectures using DT support built-in dtb's in the init section. These platforms need to copy the dtb from init since the strings are referenced after unflattening. Every arch has their own copying routine which do the same thing. Create a common function, unflatten_and_copy_device_tree, to copy the dtb when unflattening the dtb. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'include/linux/of_fdt.h')
-rw-r--r--include/linux/of_fdt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h
index a478c62a2aab..58c28a8cc257 100644
--- a/include/linux/of_fdt.h
+++ b/include/linux/of_fdt.h
@@ -118,9 +118,11 @@ extern int early_init_dt_scan_root(unsigned long node, const char *uname,
/* Other Prototypes */
extern void unflatten_device_tree(void);
+extern void unflatten_and_copy_device_tree(void);
extern void early_init_devtree(void *);
#else /* CONFIG_OF_FLATTREE */
static inline void unflatten_device_tree(void) {}
+static inline void unflatten_and_copy_device_tree(void) {}
#endif /* CONFIG_OF_FLATTREE */
#endif /* __ASSEMBLY__ */