diff options
author | Simon Glass | 2023-02-05 15:40:10 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-10 07:41:39 -0500 |
commit | dec5f3cc72d0314a84a1afb23174fb83c04410c9 (patch) | |
tree | 6caa84b06118acb2e1ebab11335b9895e1a3070f /include | |
parent | 066640f3b8aec1d8463e0489cd489048996fd01d (diff) |
Correct SPL use of IMX8MN_BEACON_2GB_LPDDR
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_IMX8MN_BEACON_2GB_LPDDR defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/imx8mn_beacon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/imx8mn_beacon.h b/include/configs/imx8mn_beacon.h index bb3dfe3fa0d..1880d0311e4 100644 --- a/include/configs/imx8mn_beacon.h +++ b/include/configs/imx8mn_beacon.h @@ -80,7 +80,7 @@ #define CFG_SYS_SDRAM_BASE 0x40000000 #define PHYS_SDRAM 0x40000000 -#if CONFIG_IS_ENABLED(IMX8MN_BEACON_2GB_LPDDR) +#if IS_ENABLED(CONFIG_IMX8MN_BEACON_2GB_LPDDR) #define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */ #else #define PHYS_SDRAM_SIZE 0x40000000 /* 1GB DDR */ |