Staging: hv: netvsc_drv: Move the definition of struct rndis_filter_packet to hyperv_...
authorK. Y. Srinivasan <kys@microsoft.com>
Fri, 13 May 2011 02:35:00 +0000 (19:35 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 17 May 2011 19:28:47 +0000 (12:28 -0700)
Move the definition of struct rndis_filter_packet to hyperv_net.h.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Abhishek Kane <v-abkane@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/hyperv_net.h
drivers/staging/hv/rndis_filter.c

index 03f37da..e43f9fa 100644 (file)
@@ -1019,6 +1019,13 @@ struct rndis_message {
        union rndis_message_container msg;
 };
 
+
+struct rndis_filter_packet {
+       void *completion_ctx;
+       void (*completion)(void *context);
+       struct rndis_message msg;
+};
+
 /* Handy macros */
 
 /* get the size of an RNDIS message. Pass in the message type, */
index ca922d8..b67b772 100644 (file)
@@ -74,14 +74,6 @@ struct rndis_request {
        struct rndis_message request_msg;
 };
 
-
-struct rndis_filter_packet {
-       void *completion_ctx;
-       void (*completion)(void *context);
-       struct rndis_message msg;
-};
-
-
 static void rndis_filter_send_completion(void *ctx);
 
 static void rndis_filter_send_request_completion(void *ctx);