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/include/fit.h | |
parent | 240eaaad284d52c812c222305fae41993cef71ac (diff) | |
download | coreboot-0a7d6908bf0daa95b2a689cb293662c175eeb3e7.tar.xz |
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/include/fit.h')
-rw-r--r-- | src/include/fit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/fit.h b/src/include/fit.h index eb51b50edb..6e0667f6cf 100644 --- a/src/include/fit.h +++ b/src/include/fit.h @@ -27,7 +27,7 @@ struct fit_image_node { const char *name; - void *data; + const void *data; uint32_t size; int compression; @@ -54,7 +54,7 @@ struct fit_config_node /* * Updates the cmdline in the devicetree. */ -void fit_update_chosen(struct device_tree *tree, char *cmd_line); +void fit_update_chosen(struct device_tree *tree, const char *cmd_line); /* * Add a compat string to the list of supported board ids. |