summaryrefslogtreecommitdiffstats
path: root/include/image.h
diff options
context:
space:
mode:
authorMarian Balakowicz <m8@semihalf.com>2008-03-10 17:53:49 +0100
committerMarian Balakowicz <m8@semihalf.com>2008-03-10 17:53:49 +0100
commiteb6175edd6c120d8b89678243e5a2be362ee8e40 (patch)
treeecaee1c9b5807dc3d81d368a070b2982bf15e266 /include/image.h
parent5dfb52138688ccbf0146f62683fe6217b3ce1b05 (diff)
downloadblackbird-obmc-uboot-eb6175edd6c120d8b89678243e5a2be362ee8e40.tar.gz
blackbird-obmc-uboot-eb6175edd6c120d8b89678243e5a2be362ee8e40.zip
[new uImage] Make node unit names const in struct bootm_headers
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'include/image.h')
-rw-r--r--include/image.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/image.h b/include/image.h
index 704a3b442c..bbd481d348 100644
--- a/include/image.h
+++ b/include/image.h
@@ -200,14 +200,14 @@ typedef struct bootm_headers {
#if defined(CONFIG_FIT)
void *fit_hdr_os; /* os FIT image header */
- char *fit_uname_os; /* os subimage node unit name */
+ const char *fit_uname_os; /* os subimage node unit name */
void *fit_hdr_rd; /* init ramdisk FIT image header */
- char *fit_uname_rd; /* init ramdisk node unit name */
+ const char *fit_uname_rd; /* init ramdisk node unit name */
#if defined(CONFIG_PPC)
void *fit_hdr_fdt; /* FDT blob FIT image header */
- char *fit_uname_fdt; /* FDT blob node unit name */
+ const char *fit_uname_fdt; /* FDT blob node unit name */
#endif
int verify; /* getenv("verify")[0] != 'n' */
int autostart; /* getenv("autostart")[0] != 'n' */
OpenPOWER on IntegriCloud