
On 3/5/19 9:17 PM, Dinh Nguyen wrote:
On 3/5/19 1:20 PM, Marek Vasut wrote:
On 3/5/19 8:03 PM, Dinh Nguyen wrote:
Enable CONFIG_MISC and CONFIG_L2X0_CACHE config options.
Signed-off-by: Dinh Nguyen dinguyen@kernel.org
configs/socfpga_sockit_defconfig | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/configs/socfpga_sockit_defconfig b/configs/socfpga_sockit_defconfig index 4c17d1a9e4..0009b0ebc3 100644 --- a/configs/socfpga_sockit_defconfig +++ b/configs/socfpga_sockit_defconfig @@ -47,6 +47,8 @@ CONFIG_DM_GPIO=y CONFIG_DWAPB_GPIO=y CONFIG_DM_I2C=y CONFIG_SYS_I2C_DW=y +CONFIG_MISC=y +CONFIG_L2X0_CACHE=y CONFIG_DM_MMC=y CONFIG_MMC_DW=y CONFIG_MTD_DEVICE=y
I think you can just add it as a default into arch/arm/socfpga/Kconfig with 'imply CONFIG_...' instead.
Ah, yes...thanks. This would prevent the need make the same edits for all the other socfpga_*_defconfigs.
Right