From: Bill Pemberton Date: Mon, 27 Jul 2009 20:47:43 +0000 (-0400) Subject: Staging: hv: remove VMBUS_MSGINFO typedef X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a9a71354b07dc1a3ee6a4053b43d5219fcda7a42;p=linux-beck.git Staging: hv: remove VMBUS_MSGINFO typedef Note that this struct doesn't appear to be used anywhere and can probably be removed. Signed-off-by: Bill Pemberton Cc: Hank Janssen Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/VmbusPrivate.h b/drivers/staging/hv/VmbusPrivate.h index 0adc02abf66b..40e5962dfb72 100644 --- a/drivers/staging/hv/VmbusPrivate.h +++ b/drivers/staging/hv/VmbusPrivate.h @@ -97,7 +97,7 @@ struct VMBUS_CONNECTION { }; -typedef struct _VMBUS_MSGINFO { +struct VMBUS_MSGINFO { /* Bookkeeping stuff */ LIST_ENTRY MsgListEntry; @@ -106,7 +106,7 @@ typedef struct _VMBUS_MSGINFO { /* The message itself */ unsigned char Msg[0]; -} VMBUS_MSGINFO; +};