mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
net: phy: marvell10g: 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-5-lihuisong@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
0cb595e80e
commit
4798f4834b
|
|
@ -230,29 +230,9 @@ static const struct hwmon_ops mv3310_hwmon_ops = {
|
|||
.read = mv3310_hwmon_read,
|
||||
};
|
||||
|
||||
static u32 mv3310_hwmon_chip_config[] = {
|
||||
HWMON_C_REGISTER_TZ | HWMON_C_UPDATE_INTERVAL,
|
||||
0,
|
||||
};
|
||||
|
||||
static const struct hwmon_channel_info mv3310_hwmon_chip = {
|
||||
.type = hwmon_chip,
|
||||
.config = mv3310_hwmon_chip_config,
|
||||
};
|
||||
|
||||
static u32 mv3310_hwmon_temp_config[] = {
|
||||
HWMON_T_INPUT,
|
||||
0,
|
||||
};
|
||||
|
||||
static const struct hwmon_channel_info mv3310_hwmon_temp = {
|
||||
.type = hwmon_temp,
|
||||
.config = mv3310_hwmon_temp_config,
|
||||
};
|
||||
|
||||
static const struct hwmon_channel_info * const mv3310_hwmon_info[] = {
|
||||
&mv3310_hwmon_chip,
|
||||
&mv3310_hwmon_temp,
|
||||
HWMON_CHANNEL_INFO(chip, HWMON_C_REGISTER_TZ | HWMON_C_UPDATE_INTERVAL),
|
||||
HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT),
|
||||
NULL,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user