[PATCH 008/206] Staging: hv: Rename variables of type struct storvsc_driver *

From: K. Y. Srinivasan
Date: Tue May 10 2011 - 04:49:51 EST


Rename the variables pointing to variables of type struct storvsc_driver *.

Signed-off-by: K. Y. Srinivasan <kys@xxxxxxxxxxxxx>
Signed-off-by: Haiyang Zhang <haiyangz@xxxxxxxxxxxxx>
Signed-off-by: Abhishek Kane <v-abkane@xxxxxxxxxxxxx>
Signed-off-by: Hank Janssen <hjanssen@xxxxxxxxxxxxx>
---
drivers/staging/hv/blkvsc_drv.c | 28 ++++++++++++++--------------
1 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/drivers/staging/hv/blkvsc_drv.c b/drivers/staging/hv/blkvsc_drv.c
index a0e08de..391666e 100644
--- a/drivers/staging/hv/blkvsc_drv.c
+++ b/drivers/staging/hv/blkvsc_drv.c
@@ -211,7 +211,7 @@ static int blkvsc_submit_request(struct blkvsc_request *blkvsc_req,
{
struct block_device_context *blkdev = blkvsc_req->dev;
struct hv_device *device_ctx = blkdev->device_ctx;
- struct storvsc_driver *storvsc_drv_obj =
+ struct storvsc_driver *storvsc_drv =
drv_to_stordrv(device_ctx->device.driver);
struct hv_storvsc_request *storvsc_req;
struct vmscsi_request *vm_srb;
@@ -237,7 +237,7 @@ static int blkvsc_submit_request(struct blkvsc_request *blkvsc_req,

storvsc_req->sense_buffer = blkvsc_req->sense_buffer;

- ret = storvsc_drv_obj->on_io_request(blkdev->device_ctx,
+ ret = storvsc_drv->on_io_request(blkdev->device_ctx,
&blkvsc_req->request);
if (ret == 0)
blkdev->num_outstanding_reqs++;
@@ -544,7 +544,7 @@ out:
*/
static int blkvsc_remove(struct hv_device *dev)
{
- struct storvsc_driver *storvsc_drv_obj =
+ struct storvsc_driver *storvsc_drv =
drv_to_stordrv(dev->device.driver);
struct block_device_context *blkdev = dev_get_drvdata(&dev->device);
unsigned long flags;
@@ -553,7 +553,7 @@ static int blkvsc_remove(struct hv_device *dev)
* Call to the vsc driver to let it know that the device is being
* removed
*/
- storvsc_drv_obj->base.dev_rm(dev);
+ storvsc_drv->base.dev_rm(dev);

/* Get to a known state */
spin_lock_irqsave(&blkdev->lock, flags);
@@ -867,16 +867,16 @@ static const struct block_device_operations block_ops = {
*/
static int blkvsc_drv_init(void)
{
- struct storvsc_driver *storvsc_drv_obj = &blkvsc_drv;
+ struct storvsc_driver *storvsc_drv = &blkvsc_drv;
struct hv_driver *drv = &blkvsc_drv.base;
int ret;

- storvsc_drv_obj->ring_buffer_size = blkvsc_ringbuffer_size;
+ storvsc_drv->ring_buffer_size = blkvsc_ringbuffer_size;

/* Callback to client driver to complete the initialization */
- blk_vsc_initialize(&storvsc_drv_obj->base);
+ blk_vsc_initialize(&storvsc_drv->base);

- drv->driver.name = storvsc_drv_obj->base.name;
+ drv->driver.name = storvsc_drv->base.name;

drv->probe = blkvsc_probe;
drv->remove = blkvsc_remove;
@@ -897,7 +897,7 @@ static int blkvsc_drv_exit_cb(struct device *dev, void *data)

static void blkvsc_drv_exit(void)
{
- struct storvsc_driver *storvsc_drv_obj = &blkvsc_drv;
+ struct storvsc_driver *storvsc_drv = &blkvsc_drv;
struct hv_driver *drv = &blkvsc_drv.base;
struct device *current_dev;
int ret;
@@ -922,8 +922,8 @@ static void blkvsc_drv_exit(void)
device_unregister(current_dev);
}

- if (storvsc_drv_obj->base.cleanup)
- storvsc_drv_obj->base.cleanup(&storvsc_drv_obj->base);
+ if (storvsc_drv->base.cleanup)
+ storvsc_drv->base.cleanup(&storvsc_drv->base);

vmbus_child_driver_unregister(&drv->driver);

@@ -935,7 +935,7 @@ static void blkvsc_drv_exit(void)
*/
static int blkvsc_probe(struct hv_device *dev)
{
- struct storvsc_driver *storvsc_drv_obj =
+ struct storvsc_driver *storvsc_drv =
drv_to_stordrv(dev->device.driver);

struct block_device_context *blkdev = NULL;
@@ -965,7 +965,7 @@ static int blkvsc_probe(struct hv_device *dev)


/* Call to the vsc driver to add the device */
- ret = storvsc_drv_obj->base.dev_add(dev, &device_info);
+ ret = storvsc_drv->base.dev_add(dev, &device_info);
if (ret != 0)
goto cleanup;

@@ -1035,7 +1035,7 @@ static int blkvsc_probe(struct hv_device *dev)
return ret;

remove:
- storvsc_drv_obj->base.dev_rm(dev);
+ storvsc_drv->base.dev_rm(dev);

cleanup:
if (blkdev) {
--
1.7.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/