aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@osg.samsung.com>2015-08-19 07:19:55 -0400
committerOlof Johansson <olof@lixom.net>2015-10-07 17:34:26 -0400
commit75529a9d427500f1b7deb3d0dec5c8d0a61fee02 (patch)
tree0cfb41b685ca2c587b880e3364c3c27ece298b42 /drivers/platform
parentf70f276a2e910c69d11b038a7df3de9d08f10b8b (diff)
platform/chrome: Make depends on MFD_CROS_EC instead CROS_EC_PROTO
The ChromeOS EC LPC and chardev drivers depend on CROS_EC_PROTO but MFD_CROS_EC select CROS_EC_PROTO instead. Mixing select and depends on is bad practice as it may lead to circular Kconfig dependencies. Since the platform devices that are matched with these drivers are registered by the ChromeOS EC mfd driver, they really depend on MFD_CROS_EC. And because this config option selects CROS_EC_PROTO, that dependency is met as well. So make the drivers to depend on MFD_CROS_EC instead of CROS_EC_PROTO. Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/chrome/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/chrome/Kconfig b/drivers/platform/chrome/Kconfig
index 21f4ea6c6c21..fde1129501f5 100644
--- a/drivers/platform/chrome/Kconfig
+++ b/drivers/platform/chrome/Kconfig
@@ -40,7 +40,7 @@ config CHROMEOS_PSTORE
40 40
41config CROS_EC_CHARDEV 41config CROS_EC_CHARDEV
42 tristate "Chrome OS Embedded Controller userspace device interface" 42 tristate "Chrome OS Embedded Controller userspace device interface"
43 depends on CROS_EC_PROTO 43 depends on MFD_CROS_EC
44 ---help--- 44 ---help---
45 This driver adds support to talk with the ChromeOS EC from userspace. 45 This driver adds support to talk with the ChromeOS EC from userspace.
46 46
@@ -49,7 +49,7 @@ config CROS_EC_CHARDEV
49 49
50config CROS_EC_LPC 50config CROS_EC_LPC
51 tristate "ChromeOS Embedded Controller (LPC)" 51 tristate "ChromeOS Embedded Controller (LPC)"
52 depends on MFD_CROS_EC && CROS_EC_PROTO && (X86 || COMPILE_TEST) 52 depends on MFD_CROS_EC && (X86 || COMPILE_TEST)
53 help 53 help
54 If you say Y here, you get support for talking to the ChromeOS EC 54 If you say Y here, you get support for talking to the ChromeOS EC
55 over an LPC bus. This uses a simple byte-level protocol with a 55 over an LPC bus. This uses a simple byte-level protocol with a