]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
staging: unisys: visorbus: renamed functions like bus_*_response to match driver...
authorSameer Wadgaonkar <sameer.wadgaonkar@unisys.com>
Fri, 19 May 2017 20:17:37 +0000 (16:17 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 May 2017 16:53:12 +0000 (18:53 +0200)
Renamed functions bus_create_response() to visorbus_create_response()
and bus_destroy_response() to visorbus_destroy_response().

Signed-off-by: Sameer Wadgaonkar <sameer.wadgaonkar@unisys.com>
Reported-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: David Kershner <david.kershner@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 a692561c81c806e6e7ae826b43d6b429bad2da25..f02dfa7d28e338d85dff9dc908adc5fb290c324a 100644 (file)
@@ -1086,7 +1086,7 @@ chipset_bus_create(struct visor_device *dev)
        if (err < 0)
                return err;
 
-       bus_create_response(dev, err);
+       visorbus_create_response(dev, err);
 
        return 0;
 }
@@ -1095,7 +1095,7 @@ void
 chipset_bus_destroy(struct visor_device *dev)
 {
        remove_bus_instance(dev);
-       bus_destroy_response(dev, 0);
+       visorbus_destroy_response(dev, 0);
 }
 
 int
index 9f030b1f589f0afcc1997e597a1b0a31426fc55d..b09268c1947d818260943d0f58902b57f745e412 100644 (file)
@@ -34,8 +34,8 @@ void chipset_device_destroy(struct visor_device *dev_info);
 int chipset_device_pause(struct visor_device *dev_info);
 int chipset_device_resume(struct visor_device *dev_info);
 
-void bus_create_response(struct visor_device *p, int response);
-void bus_destroy_response(struct visor_device *p, int response);
+void visorbus_create_response(struct visor_device *p, int response);
+void visorbus_destroy_response(struct visor_device *p, int response);
 void device_create_response(struct visor_device *p, int response);
 void device_destroy_response(struct visor_device *p, int response);
 void device_resume_response(struct visor_device *p, int response);
index 68c2221eb35d1298d2908031b38d31d90c4bf186..a3ece142b386615e6069a99537704ebf4c164563 100644 (file)
@@ -1450,7 +1450,7 @@ setup_crash_devices_work_queue(struct work_struct *work)
 }
 
 void
-bus_create_response(struct visor_device *bus_info, int response)
+visorbus_create_response(struct visor_device *bus_info, int response)
 {
        if (response >= 0)
                bus_info->state.created = 1;
@@ -1463,7 +1463,7 @@ bus_create_response(struct visor_device *bus_info, int response)
 }
 
 void
-bus_destroy_response(struct visor_device *bus_info, int response)
+visorbus_destroy_response(struct visor_device *bus_info, int response)
 {
        controlvm_responder(CONTROLVM_BUS_DESTROY, bus_info->pending_msg_hdr,
                            response);