aboutsummaryrefslogtreecommitdiff
path: root/src/lib/device_tree.c
diff options
context:
space:
mode:
authorPatrick Rudolph <patrick.rudolph@9elements.com>2018-05-30 15:05:28 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-06-28 09:01:26 +0000
commit5ccc73145fb98afb888cd616d0a39fa75b81288a (patch)
treea29ab02aed416f9f4075329e87cafbafa77e893b /src/lib/device_tree.c
parenteb5d76a510d7a4b46e6b33d8a697a30510a0a6d7 (diff)
devicetree: Add method to delete property by name
Will be used on Cavium SoC to delete devicetree entries that aren't available with the board/configuration. Change-Id: I7c58a2411206bca62d0e96fa627530e937383ac9 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/26693 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/lib/device_tree.c')
-rw-r--r--src/lib/device_tree.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/lib/device_tree.c b/src/lib/device_tree.c
index de14c15536..21916598c5 100644
--- a/src/lib/device_tree.c
+++ b/src/lib/device_tree.c
@@ -763,6 +763,24 @@ void dt_write_int(u8 *dest, u64 src, size_t length)
}
/*
+ * Delete a property by name in a given node if it exists.
+ *
+ * @param node The device tree node to operate on.
+ * @param name The name of the property to delete.
+ */
+void dt_delete_prop(struct device_tree_node *node, const char *name)
+{
+ struct device_tree_property *prop;
+
+ list_for_each(prop, node->properties, list_node) {
+ if (!strcmp(prop->prop.name, name)) {
+ list_remove(&prop->list_node);
+ return;
+ }
+ }
+}
+
+/*
* Add an arbitrary property to a node, or update it if it already exists.
*
* @param node The device tree node to add to.