Commit a3605300 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman

Drivers: hv: Get rid of an unnecessary check in vmbus_prep_negotiate_resp()

The vmbus_prep_negotiate_resp() is only invoked when we are negotiating
the version; so the current check in vmbus_prep_negotiate_resp()
is unnecessary. Get rid of it.
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 90394482
...@@ -56,7 +56,6 @@ struct vmbus_channel_message_table_entry { ...@@ -56,7 +56,6 @@ struct vmbus_channel_message_table_entry {
void vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp, void vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
struct icmsg_negotiate *negop, u8 *buf) struct icmsg_negotiate *negop, u8 *buf)
{ {
if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
icmsghdrp->icmsgsize = 0x10; icmsghdrp->icmsgsize = 0x10;
negop = (struct icmsg_negotiate *)&buf[ negop = (struct icmsg_negotiate *)&buf[
...@@ -78,8 +77,8 @@ void vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp, ...@@ -78,8 +77,8 @@ void vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
negop->icframe_vercnt = 1; negop->icframe_vercnt = 1;
negop->icmsg_vercnt = 1; negop->icmsg_vercnt = 1;
}
} }
EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp); EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment