Skip to content

Commit

Permalink
staging: hv: Convert camel case function names in blkvsc.c to lowercase
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Hank Janssen authored and Greg Kroah-Hartman committed Dec 7, 2010
1 parent f638859 commit 2e6484a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/hv/blkvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static const struct hv_guid gBlkVscDeviceType = {
}
};

static int BlkVscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo)
static int blk_vsc_on_device_add(struct hv_device *Device, void *AdditionalInfo)
{
struct storvsc_device_info *deviceInfo;
int ret = 0;
Expand Down Expand Up @@ -93,7 +93,7 @@ int blk_vsc_initialize(struct hv_driver *Driver)
storDriver->max_outstanding_req_per_channel);

/* Setup the dispatch table */
storDriver->base.OnDeviceAdd = BlkVscOnDeviceAdd;
storDriver->base.OnDeviceAdd = blk_vsc_on_device_add;
storDriver->base.OnDeviceRemove = stor_vsc_on_device_remove;
storDriver->base.OnCleanup = stor_vsc_on_cleanup;
storDriver->on_io_request = stor_vsc_on_io_request;
Expand Down

0 comments on commit 2e6484a

Please sign in to comment.