[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230111043729.3792-1-xupengfei@nfschina.com>
Date: Wed, 11 Jan 2023 12:37:29 +0800
From: XU pengfei <xupengfei@...china.com>
To: jdelvare@...e.com, linux@...ck-us.net
Cc: linux-hwmon@...r.kernel.org, linux-kernel@...r.kernel.org,
XU pengfei <xupengfei@...china.com>
Subject: [PATCH 1/1] hwmon: powr1220: remove unnecessary (void*) conversions
Pointer variables of void * type do not require type cast.
Signed-off-by: XU pengfei <xupengfei@...china.com>
---
drivers/hwmon/powr1220.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/hwmon/powr1220.c b/drivers/hwmon/powr1220.c
index f77dc6db31ac..501337ee5aa3 100644
--- a/drivers/hwmon/powr1220.c
+++ b/drivers/hwmon/powr1220.c
@@ -174,7 +174,7 @@ static umode_t
powr1220_is_visible(const void *data, enum hwmon_sensor_types type, u32
attr, int channel)
{
- struct powr1220_data *chip_data = (struct powr1220_data *)data;
+ struct powr1220_data *chip_data = data;
if (channel >= chip_data->max_channels)
return 0;
--
2.18.2
Powered by blists - more mailing lists