diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2018-08-22 09:55:15 +0200 |
---|---|---|
committer | Philipp Deppenwiese <zaolin.daisuki@gmail.com> | 2018-08-24 11:38:28 +0000 |
commit | 0a7d6908bf0daa95b2a689cb293662c175eeb3e7 (patch) | |
tree | a0668237a490141dd7ddff850f47d9daec446178 /src/lib/fit_payload.c | |
parent | 240eaaad284d52c812c222305fae41993cef71ac (diff) |
device_tree/fit: Constify data structures
* Add const quailifier to arguments and elements.
* Add casts where necessary in cn81xx/soc.
Tested on Cavium CN81xx EVB SFF.
Change-Id: Id27966427fb97457fe883be32685d1397fb0781f
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/28267
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/lib/fit_payload.c')
-rw-r--r-- | src/lib/fit_payload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/fit_payload.c b/src/lib/fit_payload.c index ec947c060e..3e1819d931 100644 --- a/src/lib/fit_payload.c +++ b/src/lib/fit_payload.c @@ -119,7 +119,7 @@ static void add_cb_fdt_data(struct device_tree *tree) struct device_tree_node *coreboot_node = dt_find_node(firmware_node, coreboot_path, &addr_cells, &size_cells, 1); - dt_add_string_prop(coreboot_node, "compatible", strdup("coreboot")); + dt_add_string_prop(coreboot_node, "compatible", "coreboot"); /* Fetch CB tables from cbmem */ void *cbtable = cbmem_find(CBMEM_ID_CBTABLE); |