From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751623AbdJXHgg (ORCPT ); Tue, 24 Oct 2017 03:36:36 -0400 Received: from mail-pg0-f65.google.com ([74.125.83.65]:48098 "EHLO mail-pg0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750868AbdJXHgd (ORCPT ); Tue, 24 Oct 2017 03:36:33 -0400 X-Google-Smtp-Source: ABhQp+QgC3GfHQX2Z8VKl4xXZittx4VM43a1KAVbavRZcMuFAwfpadc4l51hzH4cchOfXdnlRodlyQ== From: Bin Meng To: Mika Westerberg , Arnd Bergmann , Cyrille Pitchen , linux-mtd , linux-kernel Cc: Stefan Roese Subject: [PATCH] spi-nor: intel-spi: Remove EXPERT dependency Date: Tue, 24 Oct 2017 00:40:53 -0700 Message-Id: <1508830853-4924-1-git-send-email-bmeng.cn@gmail.com> X-Mailer: git-send-email 1.7.9.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The idea to have the intel-spi driver dependent on EXPERT was exactly because we did not want ordinary users playing with the device and inadvertently overwrite their BIOSes (if it is not protected). This seems to be superfluous hence remove it. Suggested-by: Arnd Bergmann Signed-off-by: Bin Meng --- 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 abf453a..be7cfb9 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" if EXPERT + tristate "Intel PCH/PCU SPI flash PCI driver" depends on X86 && PCI select SPI_INTEL_SPI help @@ -106,7 +106,7 @@ config SPI_INTEL_SPI_PCI will be called intel-spi-pci. config SPI_INTEL_SPI_PLATFORM - tristate "Intel PCH/PCU SPI flash platform driver" if EXPERT + tristate "Intel PCH/PCU SPI flash platform driver" depends on X86 && PCI select SPI_INTEL_SPI select LPC_ICH -- 2.7.4