Staging: hv: typedef removal for ChannelMessages.h

ChannelMessages.h is now coding style clean.

Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

diff --git a/drivers/staging/hv/Connection.c b/drivers/staging/hv/Connection.c
index 5cdfbc9..d8ff49d 100644
--- a/drivers/staging/hv/Connection.c
+++ b/drivers/staging/hv/Connection.c
@@ -51,7 +51,7 @@
 {
 	int ret=0;
 	struct vmbus_channel_msginfo *msgInfo = NULL;
-	VMBUS_CHANNEL_INITIATE_CONTACT *msg;
+	struct vmbus_channel_initiate_contact *msg;
 	unsigned long flags;
 
 	DPRINT_ENTER(VMBUS);
@@ -100,7 +100,7 @@
 		goto Cleanup;
 	}
 
-	msgInfo = kzalloc(sizeof(*msgInfo) + sizeof(VMBUS_CHANNEL_INITIATE_CONTACT), GFP_KERNEL);
+	msgInfo = kzalloc(sizeof(*msgInfo) + sizeof(struct vmbus_channel_initiate_contact), GFP_KERNEL);
 	if (msgInfo == NULL)
 	{
 		ret = -1;
@@ -108,7 +108,7 @@
 	}
 
 	msgInfo->WaitEvent = osd_WaitEventCreate();
-	msg = (VMBUS_CHANNEL_INITIATE_CONTACT*)msgInfo->Msg;
+	msg = (struct vmbus_channel_initiate_contact *)msgInfo->Msg;
 
 	msg->Header.MessageType = ChannelMessageInitiateContact;
 	msg->VMBusVersionRequested = VMBUS_REVISION_NUMBER;
@@ -129,7 +129,7 @@
 
 	DPRINT_DBG(VMBUS, "Sending channel initiate msg...");
 
-	ret = VmbusPostMessage(msg, sizeof(VMBUS_CHANNEL_INITIATE_CONTACT));
+	ret = VmbusPostMessage(msg, sizeof(struct vmbus_channel_initiate_contact));
 	if (ret != 0)
 	{
 		REMOVE_ENTRY_LIST(&msgInfo->MsgListEntry);
@@ -208,7 +208,7 @@
 int VmbusDisconnect(void)
 {
 	int ret=0;
-	VMBUS_CHANNEL_UNLOAD *msg;
+	struct vmbus_channel_message_header *msg;
 
 	DPRINT_ENTER(VMBUS);
 
@@ -216,11 +216,11 @@
 	if (gVmbusConnection.ConnectState != Connected)
 		return -1;
 
-	msg = kzalloc(sizeof(VMBUS_CHANNEL_UNLOAD), GFP_KERNEL);
+	msg = kzalloc(sizeof(struct vmbus_channel_message_header), GFP_KERNEL);
 
 	msg->MessageType = ChannelMessageUnload;
 
-	ret = VmbusPostMessage(msg, sizeof(VMBUS_CHANNEL_UNLOAD));
+	ret = VmbusPostMessage(msg, sizeof(struct vmbus_channel_message_header));
 
 	if (ret != 0)
 	{