Staging: hv: storvsc_drv: Rename the driver variable
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Abhishek Kane <v-abkane@microsoft.com> Signed-off-by: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
f5c78872d5
commit
565c38def1
|
@ -768,7 +768,7 @@ static DEF_SCSI_QCMD(storvsc_queuecommand)
|
|||
|
||||
|
||||
/* The one and only one */
|
||||
static struct storvsc_driver g_storvsc_drv;
|
||||
static struct storvsc_driver storvsc_drv;
|
||||
|
||||
/* Scsi driver */
|
||||
static struct scsi_host_template scsi_driver = {
|
||||
|
@ -879,8 +879,8 @@ static int storvsc_probe(struct hv_device *device)
|
|||
static int storvsc_drv_init(void)
|
||||
{
|
||||
int ret;
|
||||
struct storvsc_driver *storvsc_drv_obj = &g_storvsc_drv;
|
||||
struct hv_driver *drv = &g_storvsc_drv.base;
|
||||
struct storvsc_driver *storvsc_drv_obj = &storvsc_drv;
|
||||
struct hv_driver *drv = &storvsc_drv.base;
|
||||
|
||||
storvsc_drv_obj->ring_buffer_size = storvsc_ringbuffer_size;
|
||||
|
||||
|
@ -915,8 +915,8 @@ static int storvsc_drv_exit_cb(struct device *dev, void *data)
|
|||
|
||||
static void storvsc_drv_exit(void)
|
||||
{
|
||||
struct storvsc_driver *storvsc_drv_obj = &g_storvsc_drv;
|
||||
struct hv_driver *drv = &g_storvsc_drv.base;
|
||||
struct storvsc_driver *storvsc_drv_obj = &storvsc_drv;
|
||||
struct hv_driver *drv = &storvsc_drv.base;
|
||||
struct device *current_dev = NULL;
|
||||
int ret;
|
||||
|
||||
|
|
Loading…
Reference in New Issue