aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include
diff options
context:
space:
mode:
authorJulien Grall <julien.grall@linaro.org>2013-09-13 13:49:30 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-09-17 15:29:10 +0100
commitbc3cac5c78a02f39f1867dd60976b5481c4b74b6 (patch)
tree158426f9bf362430fdf2c87e66b32582dc44838a /xen/include
parent64e2efcad8789bdb09abc4c07f4cc259d8b42676 (diff)
downloadxen-bc3cac5c78a02f39f1867dd60976b5481c4b74b6.tar.gz
xen-bc3cac5c78a02f39f1867dd60976b5481c4b74b6.tar.bz2
xen-bc3cac5c78a02f39f1867dd60976b5481c4b74b6.zip
xen/dts: Clean up the exported API for device tree
All Xen code has been converted to the new device tree API that uses a tree structure to describe the DTS. The Flat Device tree is still used by Xen during early boot stage, but only in internal. Remove entirely unneeded functions or move to a static function. Signed-off-by: Julien Grall <julien.grall@linaro.org> Acked-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'xen/include')
-rw-r--r--xen/include/xen/device_tree.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/xen/include/xen/device_tree.h b/xen/include/xen/device_tree.h
index fae9f97215..7810f53b66 100644
--- a/xen/include/xen/device_tree.h
+++ b/xen/include/xen/device_tree.h
@@ -181,21 +181,6 @@ extern const void *device_tree_flattened;
size_t __init device_tree_early_init(const void *fdt);
-void __init device_tree_get_reg(const u32 **cell, u32 address_cells,
- u32 size_cells,
- u64 *start, u64 *size);
-void __init device_tree_set_reg(u32 **cell, u32 address_cells, u32 size_cells,
- u64 start, u64 size);
-u32 __init device_tree_get_u32(const void *fdt, int node,
- const char *prop_name, u32 dflt);
-bool_t __init device_tree_node_matches(const void *fdt, int node,
- const char *match);
-bool_t __init device_tree_node_compatible(const void *fdt, int node,
- const char *match);
-int __init find_compatible_node(const char *compatible, int *node, int *depth,
- u32 *address_cells, u32 *size_cells);
-int __init device_tree_for_each_node(const void *fdt,
- device_tree_node_func func, void *data);
const char __init *device_tree_bootargs(const void *fdt);
void __init device_tree_dump(const void *fdt);