Commit 554df454 authored by XU pengfei's avatar XU pengfei Committed by Guenter Roeck
Browse files

hwmon: ibmpex: remove unnecessary (void*) conversions



Pointer variables of void * type do not require type cast.

Signed-off-by: default avatarXU pengfei <xupengfei@nfschina.com>
Link: https://lore.kernel.org/r/20230111043605.3726-1-xupengfei@nfschina.com


Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent e2e09989
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,