From 920130a9de4a833f22c0166a4941e18b88a67f01 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Sun, 2 Feb 2014 17:59:07 +0100 Subject: hwmon: Fix SENSORS_LM75 dependencies to eliminate build errors Based on an earlier attempt by Randy Dunlap. Fix SENSORS_LM75 dependencies to eliminate build errors: drivers/built-in.o: In function `lm75_remove': lm75.c:(.text+0x12bd8c): undefined reference to `thermal_zone_of_sensor_unregister' drivers/built-in.o: In function `lm75_probe': lm75.c:(.text+0x12c123): undefined reference to `thermal_zone_of_sensor_register' Add depends on THERMAL since that is what provides the register/unregister functions above, but only if THERMAL_OF was selected as this is an optional feature of the driver. Signed-off-by: Jean Delvare Cc: Randy Dunlap Acked-by: Eduardo Valentin Reviewed-by: Guenter Roeck --- drivers/hwmon/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig index f6ca3b21aebd..9c98c28fa02e 100644 --- a/drivers/hwmon/Kconfig +++ b/drivers/hwmon/Kconfig @@ -650,6 +650,7 @@ config SENSORS_LM73 config SENSORS_LM75 tristate "National Semiconductor LM75 and compatibles" depends on I2C + depends on THERMAL || !THERMAL_OF help If you say yes here you get support for one common type of temperature sensor chip, with models including: -- cgit v1.2.3 From 632007e2011e5d4269ddb88c0a636b9d9e3c8a13 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Sun, 2 Feb 2014 17:59:07 +0100 Subject: hwmon: Fix SENSORS_TMP102 dependencies to eliminate build errors Similar to what was done for the lm75 driver. Add depends on THERMAL since that is what provides the register/unregister functions above, but only if THERMAL_OF was selected as this is an optional feature of the driver. Signed-off-by: Jean Delvare Cc: Randy Dunlap Acked-by: Eduardo Valentin Reviewed-by: Guenter Roeck --- drivers/hwmon/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig index 9c98c28fa02e..5ce43d8dfa98 100644 --- a/drivers/hwmon/Kconfig +++ b/drivers/hwmon/Kconfig @@ -1286,6 +1286,7 @@ config SENSORS_THMC50 config SENSORS_TMP102 tristate "Texas Instruments TMP102" depends on I2C + depends on THERMAL || !THERMAL_OF help If you say yes here you get support for Texas Instruments TMP102 sensor chips. -- cgit v1.2.3