kconfig: Add missing quotes after 'source' and 'menu'

Missing quotes are accepted in some places for compatibility with the C
tools, e.g.

  source no/quotes/Kconfig
  menu Title

It looks broken though. Fix the two places in Zephyr that skip the
quotes. A style warning will be added.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2019-03-18 15:03:35 +01:00 committed by Anas Nashif
commit 9964cf29ac
2 changed files with 4 additions and 2 deletions

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
#
menu Testing
menu "Testing"
source "subsys/testsuite/ztest/Kconfig"
@ -104,4 +104,5 @@ config TEST_FLASH_DRIVERS
help
This option will help test the flash drivers. This should be enabled
only when using qemu_x86.
endmenu