aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHank Janssen <hjanssen@microsoft.com>2010-12-06 15:26:50 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-12-06 19:11:09 -0500
commit2e6484acd28bb5223942d2608387af3ec9bf56f1 (patch)
tree3f9a4bea4f4dddc680a6239260e3abe214d04d3d
parentf638859e3203d1ae933e7f2114cca68f1ac407db (diff)
staging: hv: Convert camel case function names in blkvsc.c to lowercase
Convert camel case function names in blkvsc.c to lowercase Signed-off-by: Abhishek Kane <v-abkane@microsoft.com> Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/staging/hv/blkvsc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/blkvsc.c b/drivers/staging/hv/blkvsc.c
index 208492ca781e..4f4a65c09a94 100644
--- a/drivers/staging/hv/blkvsc.c
+++ b/drivers/staging/hv/blkvsc.c
@@ -35,7 +35,7 @@ static const struct hv_guid gBlkVscDeviceType = {
35 } 35 }
36}; 36};
37 37
38static int BlkVscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo) 38static int blk_vsc_on_device_add(struct hv_device *Device, void *AdditionalInfo)
39{ 39{
40 struct storvsc_device_info *deviceInfo; 40 struct storvsc_device_info *deviceInfo;
41 int ret = 0; 41 int ret = 0;
@@ -93,7 +93,7 @@ int blk_vsc_initialize(struct hv_driver *Driver)
93 storDriver->max_outstanding_req_per_channel); 93 storDriver->max_outstanding_req_per_channel);
94 94
95 /* Setup the dispatch table */ 95 /* Setup the dispatch table */
96 storDriver->base.OnDeviceAdd = BlkVscOnDeviceAdd; 96 storDriver->base.OnDeviceAdd = blk_vsc_on_device_add;
97 storDriver->base.OnDeviceRemove = stor_vsc_on_device_remove; 97 storDriver->base.OnDeviceRemove = stor_vsc_on_device_remove;
98 storDriver->base.OnCleanup = stor_vsc_on_cleanup; 98 storDriver->base.OnCleanup = stor_vsc_on_cleanup;
99 storDriver->on_io_request = stor_vsc_on_io_request; 99 storDriver->on_io_request = stor_vsc_on_io_request;