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 1fdAk6-0007BL-IH for linux-mtd@lists.infradead.org; Wed, 11 Jul 2018 08:45:02 +0000 Date: Wed, 11 Jul 2018 10:44:46 +0200 From: Boris Brezillon To: Arnd Bergmann Cc: Miquel Raynal , David Woodhouse , Brian Norris , Marek Vasut , Richard Weinberger , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mtd: nand/raw: MTD_NAND_BCM47XXNFLASH needs CONFIG_BCMA Message-ID: <20180711104446.69af988a@bbrezillon> In-Reply-To: <20180711084010.57950-1-arnd@arndb.de> References: <20180711084010.57950-1-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, 11 Jul 2018 10:39:44 +0200 Arnd Bergmann wrote: > We already have a dependency on BCMA_NFLASH, which in turn depends on > BCMA, but since BCMA is a tristate option and BCMA_NFLASH is bool, > we can run into an invalid configuration with MTD_NAND_BCM47XXNFLASH=y > and BCMA=m: > > drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.o: In function `bcm47xxnflash_ops_bcm4706_init': > ops_bcm4706.c:(.text+0x790): undefined reference to `bcma_chipco_pll_read' > > Adding the dependency here forces MTD_NAND_BCM47XXNFLASH to only be > configured =m here so it can link against the BCMA driver. > > Signed-off-by: Arnd Bergmann Reviewed-by: Boris Brezillon > --- > 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 230311fa2cc0..b457f92d55d4 100644 > --- a/drivers/mtd/nand/raw/Kconfig > +++ b/drivers/mtd/nand/raw/Kconfig > @@ -364,6 +364,7 @@ config MTD_NAND_BRCMNAND > config MTD_NAND_BCM47XXNFLASH > tristate "Support for NAND flash on BCM4706 BCMA bus" > depends on BCMA_NFLASH > + depends on BCMA > help > BCMA bus can have various flash memories attached, they are > registered by bcma as platform devices. This enables driver for