summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorK. Y. Srinivasan2011-05-10 16:55:12 +0200
committerGreg Kroah-Hartman2011-05-11 22:48:54 +0200
commit205dec163840cb74ee47c878f4dd04820169b4aa (patch)
treed49afbec74ea272028ca25fe9f61547e4a86d120 /drivers
parentStaging: hv: Get rid of dev_rm from struct hv_driver (diff)
downloadkernel-qcow2-linux-205dec163840cb74ee47c878f4dd04820169b4aa.tar.gz
kernel-qcow2-linux-205dec163840cb74ee47c878f4dd04820169b4aa.tar.xz
kernel-qcow2-linux-205dec163840cb74ee47c878f4dd04820169b4aa.zip
Staging: hv: Cleanup calls to cleanup in storvsc_drv.c
cleanup() is an empty function; get rid of calls to this. 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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/hv/storvsc_drv.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/staging/hv/storvsc_drv.c b/drivers/staging/hv/storvsc_drv.c
index 5624d26ba4ce..0d7e43bf58d1 100644
--- a/drivers/staging/hv/storvsc_drv.c
+++ b/drivers/staging/hv/storvsc_drv.c
@@ -833,7 +833,6 @@ static int storvsc_drv_exit_cb(struct device *dev, void *data)
static void storvsc_drv_exit(void)
{
- struct storvsc_driver *storvsc_drv_obj = &storvsc_drv;
struct hv_driver *drv = &storvsc_drv.base;
struct device *current_dev = NULL;
int ret;
@@ -854,9 +853,6 @@ static void storvsc_drv_exit(void)
device_unregister(current_dev);
}
- if (storvsc_drv_obj->base.cleanup)
- storvsc_drv_obj->base.cleanup(&storvsc_drv_obj->base);
-
vmbus_child_driver_unregister(&drv->driver);
return;
}