diff options
author | 2025-01-24 10:26:34 +0800 | |
---|---|---|
committer | 2025-02-03 12:54:18 +0100 | |
commit | 33c145297840dddf0dc23d5822159c26aba920d3 (patch) | |
tree | 4ec2c7937d2df0267fb0dfd89b37ceecf2edb818 | |
parent | w1: fix NULL pointer dereference in probe (diff) | |
download | wireguard-linux-33c145297840dddf0dc23d5822159c26aba920d3.tar.xz wireguard-linux-33c145297840dddf0dc23d5822159c26aba920d3.zip |
w1: w1_therm: w1: Use HWMON_CHANNEL_INFO macro to simplify code
Use HWMON_CHANNEL_INFO macro to simplify code.
Signed-off-by: Huisong Li <lihuisong@huawei.com>
Link: https://lore.kernel.org/r/20250124022635.16647-9-lihuisong@huawei.com
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
-rw-r--r-- | drivers/w1/slaves/w1_therm.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/w1/slaves/w1_therm.c b/drivers/w1/slaves/w1_therm.c index c85e80c7e130..9ccedb3264fb 100644 --- a/drivers/w1/slaves/w1_therm.c +++ b/drivers/w1/slaves/w1_therm.c @@ -444,18 +444,8 @@ static int w1_read(struct device *dev, enum hwmon_sensor_types type, } } -static const u32 w1_temp_config[] = { - HWMON_T_INPUT, - 0 -}; - -static const struct hwmon_channel_info w1_temp = { - .type = hwmon_temp, - .config = w1_temp_config, -}; - static const struct hwmon_channel_info * const w1_info[] = { - &w1_temp, + HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT), NULL }; |