]> git.baikalelectronics.ru Git - kernel.git/commit
hwmon: (ntc_thermistor) Fix dependencies
authorJean Delvare <jdelvare@suse.de>
Sun, 25 May 2014 15:23:08 +0000 (17:23 +0200)
committerJean Delvare <jdelvare@suse.de>
Sun, 25 May 2014 15:23:08 +0000 (17:23 +0200)
commit039e41a62dd6b2e126f312b453bbd228fea71d6d
tree55aec0b1edfe4d62ca57f9ad803683adc1895acf
parent018730c6a671d1922dcd21d330aaa6214daec5fd
hwmon: (ntc_thermistor) Fix dependencies

In commit bb0ae243, support was added for ntc_thermistor devices being
declared in the device tree and implemented on top of IIO. With that
change, a dependency was added to the ntc_thermistor driver:

depends on (!OF && !IIO) || (OF && IIO)

This construct has the drawback that the driver can no longer be
selected when OF is set and IIO isn't, nor when IIO is set and OF is
not. This is a regression for the original users of the driver.

As the new code depends on IIO and is useless without OF, include it
only if both are enabled, and set the dependencies accordingly. This
is clearer, more simple and more correct.

Signed-off-by: Jean Delvare <jdelvare@suse.de>
Fixes: bb0ae243 hwmon: (ntc_thermistor) Add DT with IIO support to NTC thermistor driver
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Cc: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
Cc: Doug Anderson <dianders@chromium.org>
drivers/hwmon/Kconfig
drivers/hwmon/ntc_thermistor.c