From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Brezillon Date: Thu, 16 Aug 2018 17:46:53 +0200 Subject: [U-Boot] [PATCH v6 20/31] mtd: declare MTD_PARTITIONS symbol in Kconfig In-Reply-To: <20180816153029.15521-21-miquel.raynal@bootlin.com> References: <20180816153029.15521-1-miquel.raynal@bootlin.com> <20180816153029.15521-21-miquel.raynal@bootlin.com> Message-ID: <20180816174653.19234ecb@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, 16 Aug 2018 17:30:18 +0200 Miquel Raynal wrote: > UBI selects MTD_PARTITIONS which is the symbol to compile > drivers/mtd/mtdpart.c. Unfortunately, the symbol was not defined in > Kconfig and this worked only with board files defining it. Fix this by > adding a boolean in Kconfig so boards defined by defconfig files only > will work as expected. > > Signed-off-by: Miquel Raynal Reviewed-by: Boris Brezillon > --- > drivers/mtd/Kconfig | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig > index 9341d518f3..d98457e223 100644 > --- a/drivers/mtd/Kconfig > +++ b/drivers/mtd/Kconfig > @@ -1,5 +1,8 @@ > menu "MTD Support" > > +config MTD_PARTITIONS > + bool > + > config MTD > bool "Enable Driver Model for MTD drivers" > depends on DM