summaryrefslogtreecommitdiff
path: root/include/image.h
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@foss.st.com>2021-03-10 10:16:25 +0100
committerTom Rini <trini@konsulko.com>2021-04-22 14:09:45 -0400
commit77b8cfef531f7758f35a8598bd474713cfc2c2ec (patch)
tree7a8b7d2a94a4b5b8ca06203d744cdf1f55ce0663 /include/image.h
parent6829d60702706b95a7271fbf3db1981c7ce9e6b5 (diff)
downloadu-boot-77b8cfef531f7758f35a8598bd474713cfc2c2ec.tar.gz
u-boot-77b8cfef531f7758f35a8598bd474713cfc2c2ec.tar.bz2
u-boot-77b8cfef531f7758f35a8598bd474713cfc2c2ec.zip
lmb: move CONFIG_LMB in Kconfig
Migrate CONFIG_LMB in Kconfig. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Diffstat (limited to 'include/image.h')
-rw-r--r--include/image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.h b/include/image.h
index 3ff3c035a7..459685d4d4 100644
--- a/include/image.h
+++ b/include/image.h
@@ -434,7 +434,7 @@ typedef struct bootm_headers {
#define BOOTM_STATE_OS_GO (0x00000400)
int state;
-#ifdef CONFIG_LMB
+#if defined(CONFIG_LMB) && !defined(USE_HOSTCC)
struct lmb lmb; /* for memory mgmt */
#endif
} bootm_headers_t;