[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250210034842.17410-1-lihuisong@huawei.com>
Date: Mon, 10 Feb 2025 11:48:42 +0800
From: Huisong Li <lihuisong@...wei.com>
To: <linux-media@...r.kernel.org>, <linux-kernel@...r.kernel.org>
CC: <matt@...ostay.sg>, <mchehab@...nel.org>, <zhanjie9@...ilicon.com>,
<zhenglifeng1@...wei.com>, <liuyonglong@...wei.com>, <lihuisong@...wei.com>
Subject: [PATCH v2] media: video-i2c: Use HWMON_CHANNEL_INFO macro to simplify code
Use HWMON_CHANNEL_INFO macro to simplify code.
Signed-off-by: Huisong Li <lihuisong@...wei.com>
---
-v2: detach this patch from the series[1]
[1] https://lore.kernel.org/lkml/20250124022635.16647-3-lihuisong@huawei.com/T/
---
drivers/media/i2c/video-i2c.c | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/drivers/media/i2c/video-i2c.c b/drivers/media/i2c/video-i2c.c
index 036a6375627a..0dd991d70d53 100644
--- a/drivers/media/i2c/video-i2c.c
+++ b/drivers/media/i2c/video-i2c.c
@@ -264,18 +264,8 @@ static int amg88xx_set_power(struct video_i2c_data *data, bool on)
#if IS_REACHABLE(CONFIG_HWMON)
-static const u32 amg88xx_temp_config[] = {
- HWMON_T_INPUT,
- 0
-};
-
-static const struct hwmon_channel_info amg88xx_temp = {
- .type = hwmon_temp,
- .config = amg88xx_temp_config,
-};
-
static const struct hwmon_channel_info * const amg88xx_info[] = {
- &amg88xx_temp,
+ HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT),
NULL
};
--
2.22.0
Powered by blists - more mailing lists