staging: hv: convert function name NetVscDisconnectFromVsp to lower case
authorHaiyang Zhang <haiyangz@microsoft.com>
Thu, 21 Apr 2011 19:30:47 +0000 (12:30 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 25 Apr 2011 23:13:28 +0000 (16:13 -0700)
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/netvsc.c

index 5838ed43222ad29279f7cdd066b71261afc73aa8..b3e649785ceb4572a1c582cad6e183cff1e90b2c 100644 (file)
@@ -571,7 +571,7 @@ cleanup:
        return ret;
 }
 
-static void NetVscDisconnectFromVsp(struct netvsc_device *net_device)
+static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
 {
        netvsc_destroy_recv_buf(net_device);
        netvsc_destroy_send_buf(net_device);
@@ -600,7 +600,7 @@ static int netvsc_device_remove(struct hv_device *device)
                udelay(100);
        }
 
-       NetVscDisconnectFromVsp(net_device);
+       netvsc_disconnect_vsp(net_device);
 
        /* Stop inbound traffic ie receives and sends completions */
        net_device = release_inbound_net_device(device);