From fac77d3a0013fa79b5df04cd58144d96d780d613 Mon Sep 17 00:00:00 2001 From: Ye Li Date: Tue, 19 Feb 2019 00:13:41 -0800 Subject: [PATCH] MLK-20945-6 spl: Fix DM_SPI_FLASH build error in SPL SPL should not use DM_SPI_FLASH, this is already cleaned in Makefile.uncmd_spl, but not in config_uncmd_spl.h Signed-off-by: Ye Li (cherry picked from commit cf8468482ec3cceb05700a326df044dc41f38793) --- include/config_uncmd_spl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/config_uncmd_spl.h b/include/config_uncmd_spl.h index e760200105..83e5f70fde 100644 --- a/include/config_uncmd_spl.h +++ b/include/config_uncmd_spl.h @@ -15,6 +15,7 @@ #undef CONFIG_DM_GPIO #undef CONFIG_DM_I2C #undef CONFIG_DM_SPI +#undef CONFIG_DM_SPI_FLASH #undef CONFIG_DM_USB #endif -- 2.17.1