summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/Kconfig
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-03-21 11:24:55 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2019-03-21 08:35:06 +0100
commit43e02c57cfa871b43f3fcb8258c9a3e7207f968d (patch)
treeedbbcc55578ddec30cb35d0079f3b50964e62d11 /drivers/i2c/Kconfig
parentde51eca0975d28e6f9af37ca5a2b05a7d001f288 (diff)
downloadbarebox-43e02c57cfa871b43f3fcb8258c9a3e7207f968d.tar.gz
barebox-43e02c57cfa871b43f3fcb8258c9a3e7207f968d.tar.xz
treewide: surround Kconfig file paths with double quotes
Based on Linux commit 8636a1f9677db4f883f29a072f401303acfc2edd This will be needed when you sync Kconfig with Linux 5.0 or later. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/i2c/Kconfig')
-rw-r--r--drivers/i2c/Kconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig
index fc314ec9c6..0bd8be04e1 100644
--- a/drivers/i2c/Kconfig
+++ b/drivers/i2c/Kconfig
@@ -3,8 +3,8 @@ menuconfig I2C
if I2C
-source drivers/i2c/algos/Kconfig
-source drivers/i2c/busses/Kconfig
+source "drivers/i2c/algos/Kconfig"
+source "drivers/i2c/busses/Kconfig"
config I2C_MUX
tristate "I2C bus multiplexing support"
@@ -13,7 +13,7 @@ config I2C_MUX
handle multiplexed I2C bus topologies, by presenting each
multiplexed segment as a I2C adapter.
-source drivers/i2c/muxes/Kconfig
+source "drivers/i2c/muxes/Kconfig"
endif