diff options
author | Dexuan Cui <decui@microsoft.com> | 2018-05-14 20:25:01 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-05-15 03:40:37 -0400 |
commit | 897609370d25c69e95a174dbd75df6e5bc3a26c8 (patch) | |
tree | 8165f3f0e1c17aa66bf73c91f0c8861eaf3d771f | |
parent | 1c9a4be514e7a946f7811f10d6d0ebab1ec6dd56 (diff) |
Drivers: hv: vmbus: Removed an unnecessary cast from void *
In C, we don't need such a cast.
Fixes: ae20b254306a ("Drivers: hv: vmbus: enable VMBus protocol version 5.0")
Reported-by: Stephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Cc: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/hv/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c index 19e046820fda..ced041899456 100644 --- a/drivers/hv/connection.c +++ b/drivers/hv/connection.c | |||
@@ -409,7 +409,7 @@ int vmbus_post_msg(void *buffer, size_t buflen, bool can_sleep) | |||
409 | * HV_STATUS_INVALID_CONNECTION_ID and we should | 409 | * HV_STATUS_INVALID_CONNECTION_ID and we should |
410 | * return an error immediately without retrying. | 410 | * return an error immediately without retrying. |
411 | */ | 411 | */ |
412 | hdr = (struct vmbus_channel_message_header *)buffer; | 412 | hdr = buffer; |
413 | if (hdr->msgtype == CHANNELMSG_INITIATE_CONTACT) | 413 | if (hdr->msgtype == CHANNELMSG_INITIATE_CONTACT) |
414 | return -EINVAL; | 414 | return -EINVAL; |
415 | /* | 415 | /* |