diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2014-02-10 07:33:53 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-14 13:13:46 -0500 |
commit | 208008c322fd1ffdd07e7fc95910154174ce0ff3 (patch) | |
tree | 4600a8a04837810d6935ef495af97b1b30267e8e | |
parent | 7841b647b9c1b118ae4eed33a0af934818e60553 (diff) |
mei: fix compilation error with missing WATCHDOG_CORE
Kconfig is not transitive so INTEL_ME_TXE has to depend
on WATCHDOG_CORE as well
ERROR: "watchdog_unregister_device" [drivers/misc/mei/mei.ko] undefined!
ERROR: "watchdog_register_device" [drivers/misc/mei/mei.ko] undefined!
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/mei/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/mei/Kconfig b/drivers/misc/mei/Kconfig index 588167913422..d23384dde73b 100644 --- a/drivers/misc/mei/Kconfig +++ b/drivers/misc/mei/Kconfig | |||
@@ -37,7 +37,7 @@ config INTEL_MEI_ME | |||
37 | config INTEL_MEI_TXE | 37 | config INTEL_MEI_TXE |
38 | tristate "Intel Trusted Execution Environment with ME Interface" | 38 | tristate "Intel Trusted Execution Environment with ME Interface" |
39 | select INTEL_MEI | 39 | select INTEL_MEI |
40 | depends on X86 && PCI | 40 | depends on X86 && PCI && WATCHDOG_CORE |
41 | help | 41 | help |
42 | MEI Support for Trusted Execution Environment device on Intel SoCs | 42 | MEI Support for Trusted Execution Environment device on Intel SoCs |
43 | 43 | ||