summaryrefslogtreecommitdiffstats
path: root/src/include/device_tree.h
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2019-05-13 17:30:31 -0700
committerPatrick Georgi <pgeorgi@google.com>2019-06-04 11:24:46 +0000
commit0e9116f0a12c0a2a8142978458d3266e5e9aacdc (patch)
tree1adea4fe38a37f720252f832f3513d89dd3544cb /src/include/device_tree.h
parent0d74653bd46a360466cf5050ea0c102fc11cdc2d (diff)
downloadcoreboot-0e9116f0a12c0a2a8142978458d3266e5e9aacdc.tar.gz
coreboot-0e9116f0a12c0a2a8142978458d3266e5e9aacdc.tar.bz2
coreboot-0e9116f0a12c0a2a8142978458d3266e5e9aacdc.zip
device_tree: Make FDT property data non-const
FDT property data should not be const -- sometimes we need to update it, for example when fixing up phandles in an overlay. On the other hand it's occasionally desirable to put a string constant in there without having to strdup() it all the time... let's just live with the tiny implicit assumption that the data we'd want to modify (phandle references, mostly) will never be added from string constants, and put a cast in dt_add_string_prop(). Change-Id: Ifac103fcff0520cc427ab9a2aa141c65e12507ac Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32868 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include/device_tree.h')
-rw-r--r--src/include/device_tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/device_tree.h b/src/include/device_tree.h
index e3723c86ac9c..d9d9613f968e 100644
--- a/src/include/device_tree.h
+++ b/src/include/device_tree.h
@@ -52,7 +52,7 @@ struct fdt_header {
struct fdt_property
{
const char *name;
- const void *data;
+ void *data;
uint32_t size;
};
@@ -165,7 +165,7 @@ void dt_write_int(u8 *dest, u64 src, size_t length);
void dt_delete_prop(struct device_tree_node *node, const char *name);
// Add different kinds of properties to a node, or update existing ones.
void dt_add_bin_prop(struct device_tree_node *node, const char *name,
- const void *data, size_t size);
+ void *data, size_t size);
void dt_add_string_prop(struct device_tree_node *node, const char *name,
const char *str);
void dt_add_u32_prop(struct device_tree_node *node, const char *name, u32 val);