treewide: surround Kconfig file paths with double quotes

The Kconfig lexer supports special characters such as '.' and '/' in
the parameter context. In my understanding, the reason is just to
support bare file paths in the source statement.

I do not see a good reason to complicate Kconfig for the room of
ambiguity.

The majority of code already surrounds file paths with double quotes,
and it makes sense since file paths are constant string literals.

Make it treewide consistent now.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Wolfram Sang <wsa@the-dreams.de>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
Masahiro Yamada
2018-12-11 20:01:04 +09:00
parent 48547bd23d
commit 8636a1f967
30 changed files with 47 additions and 47 deletions

View File

@@ -910,7 +910,7 @@ config PLAT_VERSATILE
source "arch/arm/firmware/Kconfig"
source arch/arm/mm/Kconfig
source "arch/arm/mm/Kconfig"
config IWMMXT
bool "Enable iWMMXt support"

View File

@@ -55,6 +55,6 @@ config KVM_ARM_HOST
---help---
Provides host support for ARM processors.
source drivers/vhost/Kconfig
source "drivers/vhost/Kconfig"
endif # VIRTUALIZATION

View File

@@ -782,7 +782,7 @@ config NEED_PER_CPU_EMBED_FIRST_CHUNK
config HOLES_IN_ZONE
def_bool y
source kernel/Kconfig.hz
source "kernel/Kconfig.hz"
config ARCH_SUPPORTS_DEBUG_PAGEALLOC
def_bool y

View File

@@ -61,6 +61,6 @@ config KVM_ARM_PMU
config KVM_INDIRECT_VECTORS
def_bool KVM && (HARDEN_BRANCH_PREDICTOR || HARDEN_EL2_VECTORS)
source drivers/vhost/Kconfig
source "drivers/vhost/Kconfig"
endif # VIRTUALIZATION

View File

@@ -261,7 +261,7 @@ config HZ
endif
if !IA64_HP_SIM
source kernel/Kconfig.hz
source "kernel/Kconfig.hz"
endif
config IA64_BRL_EMU

View File

@@ -123,11 +123,11 @@ config BOOTINFO_PROC
menu "Platform setup"
source arch/m68k/Kconfig.cpu
source "arch/m68k/Kconfig.cpu"
source arch/m68k/Kconfig.machine
source "arch/m68k/Kconfig.machine"
source arch/m68k/Kconfig.bus
source "arch/m68k/Kconfig.bus"
endmenu

View File

@@ -72,6 +72,6 @@ config KVM_MIPS_DEBUG_COP0_COUNTERS
If unsure, say N.
source drivers/vhost/Kconfig
source "drivers/vhost/Kconfig"
endif # VIRTUALIZATION

View File

@@ -139,7 +139,7 @@ config SMP
If you don't know what to do here, say N.
source kernel/Kconfig.hz
source "kernel/Kconfig.hz"
config OPENRISC_NO_SPR_SR_DSX
bool "use SPR_SR_DSX software emulation" if OR1K_1200

View File

@@ -393,7 +393,7 @@ config HIGHMEM
bool "High memory support"
depends on PPC32
source kernel/Kconfig.hz
source "kernel/Kconfig.hz"
config HUGETLB_PAGE_SIZE_VARIABLE
bool
@@ -816,7 +816,7 @@ config ARCH_WANTS_FREEZER_CONTROL
def_bool y
depends on ADB_PMU
source kernel/power/Kconfig
source "kernel/power/Kconfig"
config SECCOMP
bool "Enable seccomp to safely compute untrusted bytecode"

View File

@@ -204,6 +204,6 @@ config KVM_XIVE
default y
depends on KVM_XICS && PPC_XIVE_NATIVE && KVM_BOOK3S_HV_POSSIBLE
source drivers/vhost/Kconfig
source "drivers/vhost/Kconfig"
endif # VIRTUALIZATION

View File

@@ -287,6 +287,6 @@ endmenu
menu "Power management options"
source kernel/power/Kconfig
source "kernel/power/Kconfig"
endmenu

View File

@@ -520,7 +520,7 @@ config SCHED_TOPOLOGY
making when dealing with machines that have multi-threading,
multiple cores or multiple books.
source kernel/Kconfig.hz
source "kernel/Kconfig.hz"
config KEXEC
def_bool y

View File

@@ -57,6 +57,6 @@ config KVM_S390_UCONTROL
# OK, it's a little counter-intuitive to do this, but it puts it neatly under
# the virtualization menu.
source drivers/vhost/Kconfig
source "drivers/vhost/Kconfig"
endif # VIRTUALIZATION

View File

@@ -597,7 +597,7 @@ endmenu
menu "Kernel features"
source kernel/Kconfig.hz
source "kernel/Kconfig.hz"
config KEXEC
bool "kexec system call (EXPERIMENTAL)"

View File

@@ -187,7 +187,7 @@ config NR_CPUS
default 32 if SPARC32
default 4096 if SPARC64
source kernel/Kconfig.hz
source "kernel/Kconfig.hz"
config RWSEM_GENERIC_SPINLOCK
bool

View File

@@ -1975,7 +1975,7 @@ config SECCOMP
If unsure, say Y. Only embedded should say N here.
source kernel/Kconfig.hz
source "kernel/Kconfig.hz"
config KEXEC
bool "kexec system call"

View File

@@ -98,6 +98,6 @@ config KVM_MMU_AUDIT
# OK, it's a little counter-intuitive to do this, but it puts it neatly under
# the virtualization menu.
source drivers/vhost/Kconfig
source "drivers/vhost/Kconfig"
endif # VIRTUALIZATION

View File

@@ -224,4 +224,4 @@ config BLK_MQ_RDMA
config BLK_PM
def_bool BLOCK && PM
source block/Kconfig.iosched
source "block/Kconfig.iosched"

View File

@@ -1826,7 +1826,7 @@ config CRYPTO_HASH_INFO
bool
source "drivers/crypto/Kconfig"
source crypto/asymmetric_keys/Kconfig
source certs/Kconfig
source "crypto/asymmetric_keys/Kconfig"
source "certs/Kconfig"
endif # if CRYPTO

View File

@@ -258,7 +258,7 @@ config CRYPTO_DEV_HIFN_795X_RNG
Select this option if you want to enable the random number generator
on the HIFN 795x crypto adapters.
source drivers/crypto/caam/Kconfig
source "drivers/crypto/caam/Kconfig"
config CRYPTO_DEV_TALITOS
tristate "Talitos Freescale Security Engine (SEC)"

Some files were not shown because too many files have changed in this diff Show More