]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: unisys: visorbus: Get rid of passthrough function visorchipset_device_destroy
authorSameer Wadgaonkar <sameer.wadgaonkar@unisys.com>
Tue, 22 Aug 2017 17:27:35 +0000 (13:27 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Aug 2017 22:14:55 +0000 (15:14 -0700)
The function visorchipset_device_destroy just called remove_visor_device,
we can just combine it with remove_visor_device.

Signed-off-by: Sameer Wadgaonkar <sameer.wadgaonkar@unisys.com>
Signed-off-by: David Kershner <david.kershner@unisys.com>
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorbus/visorbus_main.c
drivers/staging/unisys/visorbus/visorbus_private.h
drivers/staging/unisys/visorbus/visorchipset.c

index 1c037a3149ee2e1659d99bd3ea4faa9db8600acc..38f07b02693aa9cf8c562a51c87ec9193f666edd 100644 (file)
@@ -716,11 +716,12 @@ int create_visor_device(struct visor_device *dev)
        return err;
 }
 
-static void remove_visor_device(struct visor_device *dev)
+void remove_visor_device(struct visor_device *dev)
 {
        list_del(&dev->list_all);
        put_device(&dev->device);
        device_unregister(&dev->device);
+       visorbus_response(dev, 0, CONTROLVM_DEVICE_DESTROY);
 }
 
 static int get_vbus_header_info(struct visorchannel *chan,
@@ -1119,12 +1120,6 @@ static void remove_all_visor_devices(void)
        }
 }
 
-void visorchipset_device_destroy(struct visor_device *dev_info)
-{
-       remove_visor_device(dev_info);
-       visorbus_response(dev_info, 0, CONTROLVM_DEVICE_DESTROY);
-}
-
 /*
  * pause_state_change_complete() - the callback function to be called by a
  *                                 visorbus function driver when a
index 56c38d5589714e3a57da2224388045a04dcf76dc..8651c87910309c8ef934b3e151cf9838c35fb44d 100644 (file)
@@ -26,7 +26,7 @@
 int visorbus_create_instance(struct visor_device *dev);
 void visorbus_remove_instance(struct visor_device *bus_info);
 int create_visor_device(struct visor_device *dev_info);
-void visorchipset_device_destroy(struct visor_device *dev_info);
+void remove_visor_device(struct visor_device *dev_info);
 int visorchipset_device_pause(struct visor_device *dev_info);
 int visorchipset_device_resume(struct visor_device *dev_info);
 
index 153c7e5ad79a94080d509ba5d4a8363c0cba05fe..25a30a4b46e4bda981e70bf16659bfaa82d29c6c 100644 (file)
@@ -948,7 +948,7 @@ static int visorbus_device_destroy(struct controlvm_message *inmsg)
        }
 
        kfree(dev_info->name);
-       visorchipset_device_destroy(dev_info);
+       remove_visor_device(dev_info);
        return 0;
 
 err_respond: