[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230111043605.3726-1-xupengfei@nfschina.com>
Date: Wed, 11 Jan 2023 12:36:06 +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: ibmpex: remove unnecessary (void*) conversions
Pointer variables of void * type do not require type cast.
Signed-off-by: XU pengfei <xupengfei@...china.com>
---
drivers/hwmon/ibmpex.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/hwmon/ibmpex.c b/drivers/hwmon/ibmpex.c
index 1837cccd993c..db066b368918 100644
--- a/drivers/hwmon/ibmpex.c
+++ b/drivers/hwmon/ibmpex.c
@@ -546,7 +546,7 @@ static void ibmpex_bmc_gone(int iface)
static void ibmpex_msg_handler(struct ipmi_recv_msg *msg, void *user_msg_data)
{
- struct ibmpex_bmc_data *data = (struct ibmpex_bmc_data *)user_msg_data;
+ struct ibmpex_bmc_data *data = user_msg_data;
if (msg->msgid != data->tx_msgid) {
dev_err(data->bmc_device,
--
2.18.2
Powered by blists - more mailing lists