diff options
author | Heiko Schocher <hs@denx.de> | 2020-01-30 14:10:05 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-02-09 15:04:37 +0100 |
commit | 0c054753a9c4c2d851e705844534ccd8676a06aa (patch) | |
tree | 94934990228178e1c2ebaa0be9c23ab4deb253c1 /board/aristainetos | |
parent | 23b783d700188196775cd59f2aa14ebad5b55757 (diff) | |
download | u-boot-0c054753a9c4c2d851e705844534ccd8676a06aa.tar.gz |
imx6: aristainetos: fix NAND detection with latest mainline
commit 88718be30010 ("mtd: rename CONFIG_NAND -> CONFIG_MTD_RAW_NAND")
moved CONFIG_NAND -> CONFIG_MTD_RAW_NAND. Adapt board code to this
change, as last merge did not respect the above commit.
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'board/aristainetos')
-rw-r--r-- | board/aristainetos/aristainetos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/aristainetos/aristainetos.c b/board/aristainetos/aristainetos.c index c79ac1d339..3541717873 100644 --- a/board/aristainetos/aristainetos.c +++ b/board/aristainetos/aristainetos.c @@ -521,7 +521,7 @@ struct display_info_t const displays[] = { }; size_t display_count = ARRAY_SIZE(displays); -#if defined(CONFIG_NAND) +#if defined(CONFIG_MTD_RAW_NAND) iomux_v3_cfg_t nfc_pads[] = { MX6_PAD_NANDF_CLE__NAND_CLE | MUX_PAD_CTRL(NO_PAD_CTRL), MX6_PAD_NANDF_ALE__NAND_ALE | MUX_PAD_CTRL(NO_PAD_CTRL), |