summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/blkvsc.c
diff options
context:
space:
mode:
authorHank Janssen <hjanssen@microsoft.com>2010-12-06 12:26:48 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2010-12-06 16:11:09 -0800
commit02e37db7148a5ee98a742a0ff2f7e3acc406049b (patch)
tree2e494233726a204cbfc993a13def31d0c957ffc9 /drivers/staging/hv/blkvsc.c
parent3d8cdf22b314f84cc4ae85ed650ccd37150a7562 (diff)
downloadop-kernel-dev-02e37db7148a5ee98a742a0ff2f7e3acc406049b.zip
op-kernel-dev-02e37db7148a5ee98a742a0ff2f7e3acc406049b.tar.gz
staging: hv: Convert camel case function names in storvsc.c to lowercase
Convert camel case function names in storvsc.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>
Diffstat (limited to 'drivers/staging/hv/blkvsc.c')
-rw-r--r--drivers/staging/hv/blkvsc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/hv/blkvsc.c b/drivers/staging/hv/blkvsc.c
index e62c922..208492c 100644
--- a/drivers/staging/hv/blkvsc.c
+++ b/drivers/staging/hv/blkvsc.c
@@ -42,7 +42,7 @@ static int BlkVscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo)
deviceInfo = (struct storvsc_device_info *)AdditionalInfo;
- ret = StorVscOnDeviceAdd(Device, AdditionalInfo);
+ ret = stor_vsc_on_device_add(Device, AdditionalInfo);
if (ret != 0)
return ret;
@@ -94,9 +94,9 @@ int blk_vsc_initialize(struct hv_driver *Driver)
/* Setup the dispatch table */
storDriver->base.OnDeviceAdd = BlkVscOnDeviceAdd;
- storDriver->base.OnDeviceRemove = StorVscOnDeviceRemove;
- storDriver->base.OnCleanup = StorVscOnCleanup;
- storDriver->on_io_request = StorVscOnIORequest;
+ storDriver->base.OnDeviceRemove = stor_vsc_on_device_remove;
+ storDriver->base.OnCleanup = stor_vsc_on_cleanup;
+ storDriver->on_io_request = stor_vsc_on_io_request;
return ret;
}
OpenPOWER on IntegriCloud