]> www.infradead.org Git - users/hch/misc.git/commitdiff
net: aquantia: Use HWMON_CHANNEL_INFO macro to simplify code
authorHuisong Li <lihuisong@huawei.com>
Mon, 10 Feb 2025 05:47:06 +0000 (13:47 +0800)
committerJakub Kicinski <kuba@kernel.org>
Wed, 12 Feb 2025 01:07:02 +0000 (17:07 -0800)
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>
drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c

index 414b2e448d59373b3532f902190c99225cdd73cb..787ea91802e75543cd9f2f26bde4cca8620d97a6 100644 (file)
@@ -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,
 };