mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-09-22 09:34:56 +02:00
net: aquantia: 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://patch.msgid.link/20250210054710.12855-2-lihuisong@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
4d3f687e24
commit
43a0d7f26a
@@ -113,19 +113,9 @@ static const struct hwmon_ops aq_hwmon_ops = {
|
||||
.read_string = aq_hwmon_read_string,
|
||||
};
|
||||
|
||||
static u32 aq_hwmon_temp_config[] = {
|
||||
HWMON_T_INPUT | HWMON_T_LABEL,
|
||||
HWMON_T_INPUT | HWMON_T_LABEL,
|
||||
0,
|
||||
};
|
||||
|
||||
static const struct hwmon_channel_info aq_hwmon_temp = {
|
||||
.type = hwmon_temp,
|
||||
.config = aq_hwmon_temp_config,
|
||||
};
|
||||
|
||||
static const struct hwmon_channel_info * const aq_hwmon_info[] = {
|
||||
&aq_hwmon_temp,
|
||||
HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT | HWMON_T_LABEL,
|
||||
HWMON_T_INPUT | HWMON_T_LABEL),
|
||||
NULL,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user