diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2011-03-10 17:04:29 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-14 15:29:57 -0400 |
commit | 21ec2de26a418e8a5839f2d260876b952a61b9ac (patch) | |
tree | ba82fdbb858dabb9df54bb9c5656fdb845d080b5 /drivers/staging | |
parent | a6e4d8e3fee3cb49c4a0f696c26f1c7b1e4d7a1b (diff) |
Staging: hv: Change the signature for vmbus_cleanup()
As part of geting rid of hv_driver object from
vmbus_driver_context, change the signature of
vmbus_cleanup() function. Note that while
vmbus_cleanup() was passed a pointer to hv_driver,
this argument was unused.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Mike Sterling <mike.sterling@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/staging')
-rw-r--r-- | drivers/staging/hv/vmbus_drv.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/hv/vmbus_drv.c b/drivers/staging/hv/vmbus_drv.c index 884a4c65159d..95654b180cbc 100644 --- a/drivers/staging/hv/vmbus_drv.c +++ b/drivers/staging/hv/vmbus_drv.c | |||
@@ -190,9 +190,8 @@ static int vmbus_dev_rm(struct hv_device *dev) | |||
190 | /* | 190 | /* |
191 | * vmbus_cleanup - Perform any cleanup when the driver is removed | 191 | * vmbus_cleanup - Perform any cleanup when the driver is removed |
192 | */ | 192 | */ |
193 | static void vmbus_cleanup(struct hv_driver *drv) | 193 | static void vmbus_cleanup(void) |
194 | { | 194 | { |
195 | /* struct vmbus_driver *driver = (struct vmbus_driver *)drv; */ | ||
196 | 195 | ||
197 | hv_cleanup(); | 196 | hv_cleanup(); |
198 | } | 197 | } |
@@ -574,7 +573,7 @@ static void vmbus_bus_exit(void) | |||
574 | /* Remove the root device */ | 573 | /* Remove the root device */ |
575 | vmbus_dev_rm(dev_ctx); | 574 | vmbus_dev_rm(dev_ctx); |
576 | 575 | ||
577 | vmbus_cleanup(NULL); | 576 | vmbus_cleanup(); |
578 | 577 | ||
579 | /* Unregister the root bus device */ | 578 | /* Unregister the root bus device */ |
580 | device_unregister(&dev_ctx->device); | 579 | device_unregister(&dev_ctx->device); |