Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1447151

[PATCH] hwmon: ftsteutates: add watchdog dependency

From Arnd Bergmann <arnd@arndb.de>
Newsgroups linux.kernel
Subject [PATCH] hwmon: ftsteutates: add watchdog dependency
Date 2016-07-20 12:50 +0200
Message-ID <rWXeG-fw-15@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


The newly added fts "Teutates" hwmon chip contains a watchdog but fails
to link when the watchdog subsystem is disabled:

drivers/hwmon/built-in.o: In function `fts_remove':
:(.text+0x161d8): undefined reference to `watchdog_unregister_device'
drivers/hwmon/built-in.o: In function `fts_probe':
:(.text+0x16cb4): undefined reference to `watchdog_register_device'

This adds a Kconfig dependency in the same way that the other
similar drivers have.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: ec9268ba1a96 ("hwmon: Add driver for FTS BMC chip "Teutates"")
---
 drivers/hwmon/Kconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
index 15479eb15fa2..eaf2f916d48c 100644
--- a/drivers/hwmon/Kconfig
+++ b/drivers/hwmon/Kconfig
@@ -488,7 +488,8 @@ config SENSORS_FSCHMD
 
 config SENSORS_FTSTEUTATES
 	tristate "Fujitsu Technology Solutions sensor chip Teutates"
-	depends on I2C
+	depends on I2C && WATCHDOG
+	select WATCHDOG_CORE
 	help
 	  If you say yes here you get support for the Fujitsu Technology
 	  Solutions (FTS) sensor chip "Teutates" including support for
-- 
2.9.0

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] hwmon: ftsteutates: add watchdog dependency Arnd Bergmann <arnd@arndb.de> - 2016-07-20 12:50 +0200
  Re: [PATCH] hwmon: ftsteutates: add watchdog dependency Guenter Roeck <linux@roeck-us.net> - 2016-07-20 15:30 +0200

csiph-web