From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.bootlin.com ([62.4.15.54]) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1ffiGs-00082e-FV for linux-mtd@lists.infradead.org; Wed, 18 Jul 2018 08:57:24 +0000 From: Boris Brezillon To: Boris Brezillon , Richard Weinberger , Miquel Raynal , linux-mtd@lists.infradead.org Cc: David Woodhouse , Brian Norris , Marek Vasut , Arnd Bergmann Subject: [PATCH v3 4/4] mtd: rawnand: orion: Allow selection of this driver when COMPILE_TEST=y Date: Wed, 18 Jul 2018 10:56:52 +0200 Message-Id: <20180718085652.30391-5-boris.brezillon@bootlin.com> In-Reply-To: <20180718085652.30391-1-boris.brezillon@bootlin.com> References: <20180718085652.30391-1-boris.brezillon@bootlin.com> List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , It just makes NAND maintainers' life easier by allowing them to compile-test this driver without having PLAT_ORION enabled. We add a dependency on HAS_IOMEM to make sure the driver compiles correctly. Signed-off-by: Boris Brezillon --- drivers/mtd/nand/raw/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig index 03314ab8cd4d..f944cf0d1017 100644 --- a/drivers/mtd/nand/raw/Kconfig +++ b/drivers/mtd/nand/raw/Kconfig @@ -382,7 +382,8 @@ config MTD_NAND_PLATFORM config MTD_NAND_ORION tristate "NAND Flash support for Marvell Orion SoC" - depends on PLAT_ORION + depends on PLAT_ORION || COMPILE_TEST + depends on HAS_IOMEM help This enables the NAND flash controller on Orion machines. -- 2.14.1