From mboxrd@z Thu Jan 1 00:00:00 1970 Subject: Re: [PATCH v2] mtd: rawnand: atmel: Select GENERIC_ALLOCATOR To: Boris Brezillon , Richard Weinberger , Miquel Raynal , linux-mtd@lists.infradead.org Cc: David Woodhouse , Brian Norris , Marek Vasut , Thomas Petazzoni References: <20180811134712.2903-1-boris.brezillon@bootlin.com> From: Randy Dunlap Message-ID: Date: Sat, 11 Aug 2018 08:11:47 -0700 MIME-Version: 1.0 In-Reply-To: <20180811134712.2903-1-boris.brezillon@bootlin.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On 08/11/2018 06:47 AM, Boris Brezillon wrote: > The driver uses genalloc functions. Select GENERIC_ALLOCATOR to prevent > build errors when selected through COMPILE_TEST. > > Fixes: 88a40e7dca00 ("mtd: rawnand: atmel: Allow selection of this driver when COMPILE_TEST=y") > Reported-by: Randy Dunlap > Signed-off-by: Boris Brezillon Acked-by: Randy Dunlap Thanks. > --- > Changes in v2: > - Use select instead of depends on (suggested by Thomas) > --- > drivers/mtd/nand/raw/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig > index b6738ece16f1..5fc9a1bde4ac 100644 > --- a/drivers/mtd/nand/raw/Kconfig > +++ b/drivers/mtd/nand/raw/Kconfig > @@ -279,6 +279,7 @@ config MTD_NAND_ATMEL > tristate "Support for NAND Flash / SmartMedia on AT91" > depends on ARCH_AT91 || COMPILE_TEST > depends on HAS_IOMEM > + select GENERIC_ALLOCATOR > select MFD_ATMEL_SMC > help > Enables support for NAND Flash / Smart Media Card interface > -- ~Randy