diff options
author | Juerg Haefliger <juerg.haefliger@canonical.com> | 2022-05-24 09:58:47 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2022-07-06 14:07:04 +0200 |
commit | 687b2754b080a6e6608b177e195ed3329724ca02 (patch) | |
tree | 881a1a116529c46fcc91f2eaf8a0e31425215f19 | |
parent | a1ab4c1cc28c153cc1cb2cecc7180ad296c9d2c3 (diff) | |
download | linux-687b2754b080a6e6608b177e195ed3329724ca02.tar.gz linux-687b2754b080a6e6608b177e195ed3329724ca02.tar.bz2 linux-687b2754b080a6e6608b177e195ed3329724ca02.zip |
m68k: Kconfig.debug: Replace single quotes
Replace single quotes in strings with double quotes to match the majority
of the rest of the kernel's Kconfig files.
Signed-off-by: Juerg Haefliger <juergh@canonical.com>
Link: https://lore.kernel.org/r/20220524075848.21684-3-juergh@canonical.com
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
-rw-r--r-- | arch/m68k/Kconfig.debug | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/m68k/Kconfig.debug b/arch/m68k/Kconfig.debug index 11b306bdd788..465e28be0ce4 100644 --- a/arch/m68k/Kconfig.debug +++ b/arch/m68k/Kconfig.debug @@ -1,11 +1,11 @@ # SPDX-License-Identifier: GPL-2.0 config BOOTPARAM - bool 'Compiled-in Kernel Boot Parameter' + bool "Compiled-in Kernel Boot Parameter" config BOOTPARAM_STRING - string 'Kernel Boot Parameter' - default 'console=ttyS0,19200' + string "Kernel Boot Parameter" + default "console=ttyS0,19200" depends on BOOTPARAM config EARLY_PRINTK |