Message ID | 1421139105-32025-1-git-send-email-rmanohar@qti.qualcomm.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Rajkumar Manoharan <rmanohar@qti.qualcomm.com> writes: > Because of wrong macro check in config_enabled, hwmon never be > enabled. Fix that. > > Signed-off-by: Rajkumar Manoharan <rmanohar@qti.qualcomm.com> Ouch, thanks for fixing my bug. Applied to ath.git.
diff --git a/drivers/net/wireless/ath/ath10k/thermal.c b/drivers/net/wireless/ath/ath10k/thermal.c index e915178..edecc6c 100644 --- a/drivers/net/wireless/ath/ath10k/thermal.c +++ b/drivers/net/wireless/ath/ath10k/thermal.c @@ -216,7 +216,7 @@ int ath10k_thermal_register(struct ath10k *ar) /* Avoid linking error on devm_hwmon_device_register_with_groups, I * guess linux/hwmon.h is missing proper stubs. */ - if (!config_enabled(HWMON)) + if (!config_enabled(CONFIG_HWMON)) return 0; hwmon_dev = devm_hwmon_device_register_with_groups(ar->dev,
Because of wrong macro check in config_enabled, hwmon never be enabled. Fix that. Signed-off-by: Rajkumar Manoharan <rmanohar@qti.qualcomm.com> --- drivers/net/wireless/ath/ath10k/thermal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)