diff options
author | Greg Kroah-Hartman <[email protected]> | 2010-12-02 12:04:59 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2010-12-02 12:04:59 -0800 |
commit | 0bdb250c69251499f53a4ac6f9dae117da490696 (patch) | |
tree | fd003c8ff515ad9fcb8736ea6f4b4008d7e8228d | |
parent | 6c884555f23d0c73f7e71ce977ee4dd882532c0f (diff) |
Staging: hv: remove gDriver variable
It's only set and never used anymore, so remove it.
Gotta love static variables with a "global" hungarian notatation on the
name...
Cc: Haiyang Zhang <[email protected]>
Cc: Hank Janssen <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/hv/vmbus_drv.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/staging/hv/vmbus_drv.c b/drivers/staging/hv/vmbus_drv.c index 01b9a3dc00d6..b18fa53f3a24 100644 --- a/drivers/staging/hv/vmbus_drv.c +++ b/drivers/staging/hv/vmbus_drv.c @@ -145,7 +145,6 @@ static const struct hv_guid gVmbusDeviceId = { } }; -static struct hv_driver *gDriver; /* vmbus driver object */ static struct hv_device *gDevice; /* vmbus root device */ /* @@ -326,8 +325,6 @@ static int VmbusInitialize(struct hv_driver *driver) if (ret != 0) DPRINT_ERR(VMBUS, "Unable to initialize the hypervisor - 0x%x", ret); - gDriver = driver; - return ret; } |