diff options
author | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2021-03-10 10:16:25 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-22 14:09:45 -0400 |
commit | 77b8cfef531f7758f35a8598bd474713cfc2c2ec (patch) | |
tree | 7a8b7d2a94a4b5b8ca06203d744cdf1f55ce0663 /include/image.h | |
parent | 6829d60702706b95a7271fbf3db1981c7ce9e6b5 (diff) | |
download | u-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.h | 2 |
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; |