Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Tomas Winkler and committed by
Greg Kroah-Hartman
208008c3 7841b647

+1 -1
+1 -1
drivers/misc/mei/Kconfig
··· 37 37 config INTEL_MEI_TXE 38 38 tristate "Intel Trusted Execution Environment with ME Interface" 39 39 select INTEL_MEI 40 - depends on X86 && PCI 40 + depends on X86 && PCI && WATCHDOG_CORE 41 41 help 42 42 MEI Support for Trusted Execution Environment device on Intel SoCs 43 43