diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2015-03-10 19:42:41 -0400 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2015-03-10 22:13:15 -0400 |
commit | f6906edeac16bb33b80d41fac84261767f18c14a (patch) | |
tree | a6dd068b92fcb44c4b742cfa2d4b695246e3ba27 /drivers/hwmon/Kconfig | |
parent | 18fd303fea21c98b0b72534e6db47e80d12bf311 (diff) |
hwmon: (gpio-fan) Fix build with CONFIG_THERMAL=m and SENSORS_GPIO_FAN=y
Fix build error when CONFIG_THERMAL=m and SENSORS_GPIO_FAN=y
by preventing that combination.
Fixes these build errors:
drivers/built-in.o: In function `gpio_fan_remove':
gpio-fan.c:(.text+0x21e97e): undefined reference to `thermal_cooling_device_unregister'
drivers/built-in.o: In function `gpio_fan_probe':
gpio-fan.c:(.text+0x21efbc): undefined reference to `thermal_cooling_device_register'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jean Delvare <jdelvare@suse.de>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: lm-sensors@lm-sensors.org
Cc: Simon Guinot <sguinot@lacie.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/Kconfig')
-rw-r--r-- | drivers/hwmon/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig index c7db7ded9db7..8f73dccb75ac 100644 --- a/drivers/hwmon/Kconfig +++ b/drivers/hwmon/Kconfig | |||
@@ -510,6 +510,7 @@ config SENSORS_G762 | |||
510 | config SENSORS_GPIO_FAN | 510 | config SENSORS_GPIO_FAN |
511 | tristate "GPIO fan" | 511 | tristate "GPIO fan" |
512 | depends on GPIOLIB | 512 | depends on GPIOLIB |
513 | depends on THERMAL || THERMAL=n | ||
513 | help | 514 | help |
514 | If you say yes here you get support for fans connected to GPIO lines. | 515 | If you say yes here you get support for fans connected to GPIO lines. |
515 | 516 | ||