Staging: hv: Move the declaration of the variable netvsc_drv
authorK. Y. Srinivasan <kys@microsoft.com>
Tue, 10 May 2011 14:55:16 +0000 (07:55 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 11 May 2011 20:48:56 +0000 (13:48 -0700)
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/netvsc_drv.c

index 25883ca6304ea9545a114f77d2bde9fa6c09661a..566865fd1237f0b44d4b55a4c491323a58a12f18 100644 (file)
@@ -60,9 +60,6 @@ static int ring_size = 128;
 module_param(ring_size, int, S_IRUGO);
 MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)");
 
-/* The one and only one */
-static struct  netvsc_driver netvsc_drv;
-
 /* no-op so the netdev core doesn't return -EINVAL when modifying the the
  * multicast address list in SIOCADDMULTI. hv is setup to get all multicast
  * when it calls RndisFilterOnOpen() */
@@ -442,6 +439,9 @@ static int netvsc_drv_exit_cb(struct device *dev, void *data)
        return 1;
 }
 
+/* The one and only one */
+static struct  netvsc_driver netvsc_drv;
+
 static void netvsc_drv_exit(void)
 {
        struct hv_driver *drv = &netvsc_drv.base;
This page took 0.024819 seconds and 5 git commands to generate.