From 4d2691677028cbb0e588744dc738502c5d3f210a Mon Sep 17 00:00:00 2001 From: Joe Perches Date: Thu, 5 Mar 2020 07:15:53 -0800 Subject: [PATCH 30/39] spi: Remove CONFIG_ prefix from Kconfig select mainline inclusion from mainline-v5.7-rc1 commit e14572c52546c16e159c4c1814984843a119e823 category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I8CSBP CVE: NA Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e14572c52546c16e159c4c1814984843a119e823 ---------------------------------------------------------------------------- commit a2ca53b52e00 ("spi: Add HiSilicon v3xx SPI NOR flash controller driver") likely inadvertently used a select statement with a CONFIG_ prefix, remove the prefix. Reported-by: Randy Dunlap Signed-off-by: Joe Perches Acked-by: John Garry Link: https://lore.kernel.org/r/f8ac6b32a29b9a05b58a7e58ffe8b780642abbf1.camel@perches.com Signed-off-by: Mark Brown Signed-off-by: YunYi Yang --- drivers/spi/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index a6f1a5c2ea82..4b4b8e4882bb 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -265,7 +265,7 @@ config SPI_HISI_SFC_V3XX tristate "HiSilicon SPI-NOR Flash Controller for Hi16XX chipsets" depends on (ARM64 && ACPI) || COMPILE_TEST depends on HAS_IOMEM - select CONFIG_MTD_SPI_NOR + select MTD_SPI_NOR help This enables support for HiSilicon v3xx SPI-NOR flash controller found in hi16xx chipsets. -- 2.27.0