From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Brezillon Date: Thu, 29 Nov 2018 00:57:19 +0100 Subject: [U-Boot] [PATCH v2 18/24] mtd: rawnand: compile-in the NAND core In-Reply-To: <20181128230800.13292-19-miquel.raynal@bootlin.com> References: <20181128230800.13292-1-miquel.raynal@bootlin.com> <20181128230800.13292-19-miquel.raynal@bootlin.com> Message-ID: <20181129005719.2ff731ec@bbrezillon> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Thu, 29 Nov 2018 00:07:54 +0100 Miquel Raynal wrote: > The NAND core should be selected by both SPI NAND and raw NAND > drivers. > > Signed-off-by: Miquel Raynal > --- > drivers/mtd/nand/raw/Kconfig | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig > index a1fd476b0d..5624e47d65 100644 > --- a/drivers/mtd/nand/raw/Kconfig > +++ b/drivers/mtd/nand/raw/Kconfig > @@ -1,6 +1,8 @@ > > menuconfig MTD_RAW_NAND > bool "Raw NAND Device Support" > + select MTD_NAND_CORE > + I'm pretty sure this is not needed (yet). Let's not compile things we don't need as some devices have storage constraints.