From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com ([192.55.52.115]) by bombadil.infradead.org with esmtps (Exim 4.89 #1 (Red Hat Linux)) id 1eYOeG-0005aC-Ml for linux-mtd@lists.infradead.org; Mon, 08 Jan 2018 04:02:58 +0000 Date: Mon, 8 Jan 2018 06:02:41 +0200 From: Mika Westerberg To: Boris Brezillon Cc: Cyrille Pitchen , linux-mtd@lists.infradead.org, Marek Vasut , David Woodhouse , Brian Norris , Richard Weinberger , Anthony Wong , Bin Meng Subject: Re: [PATCH 2/3] spi-nor: intel-spi: Explicitly mark the driver as dangerous in Kconfig Message-ID: <20180108040241.GI27654@lahna.fi.intel.com> References: <20180104090744.67654-1-mika.westerberg@linux.intel.com> <20180104090744.67654-2-mika.westerberg@linux.intel.com> <22d53b77-7c57-e86b-e8f5-465513382647@wedev4u.fr> <20180107220631.73f303b6@bbrezillon> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20180107220631.73f303b6@bbrezillon> List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Sun, Jan 07, 2018 at 10:06:31PM +0100, Boris Brezillon wrote: > On Sun, 7 Jan 2018 21:32:46 +0100 > Cyrille Pitchen wrote: > > > Hi Mika, > > > > Le 04/01/2018 à 10:07, Mika Westerberg a écrit : > > > The driver is not meant for normal users at all but instead such users > > > who really know what they are doing and are able to build their own > > > kernel to enable it. Mark both driver Kconfig entries as dangerous to > > > make sure the driver is not accidentally enabled without understanding > > > possible issues in doing so. > > > > > > Signed-off-by: Mika Westerberg > > > --- > > > drivers/mtd/spi-nor/Kconfig | 4 ++-- > > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > > > diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig > > > index 89da88e59121..f480b227a6b8 100644 > > > --- a/drivers/mtd/spi-nor/Kconfig > > > +++ b/drivers/mtd/spi-nor/Kconfig > > > @@ -90,7 +90,7 @@ config SPI_INTEL_SPI > > > tristate > > > > > > config SPI_INTEL_SPI_PCI > > > - tristate "Intel PCH/PCU SPI flash PCI driver" > > > + tristate "Intel PCH/PCU SPI flash PCI driver (DANGEROUS)" > > > > I guess it might be even better and safer to add "default n" too, don't > > you agree? Adding only the "DANGEROUS" word would not prevent build > > scripts to select this driver when creating a kernel config from scratch. > > How about adding > > depends on EXPERT > > ? It used to be like that but then it was pointed out by Arnd Bergman that EXPERT is not about hiding drivers and got removed by b8cc0012917d ("spi-nor: intel-spi: Remove EXPERT dependency").