From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dinh Nguyen Date: Tue, 5 Mar 2019 14:17:21 -0600 Subject: [U-Boot] [RFC PATCHv1 2/3] defconfig: socfpga_sockit_defconfig: enable L2X0_CACHE driver In-Reply-To: <9c7ff28e-bee8-1204-6afc-f24eb0405f4a@denx.de> References: <20190305190356.9361-1-dinguyen@kernel.org> <20190305190356.9361-3-dinguyen@kernel.org> <9c7ff28e-bee8-1204-6afc-f24eb0405f4a@denx.de> Message-ID: <38618036-ac1c-d640-d5b1-0aad00859f94@kernel.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 >> --- >> 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. Dinh