Renames visorchipset_device_pause_response to device_pause_response,
thereby following the convention that other responder functions follow.
Signed-off-by: David Binder <david.binder@unisys.com>
Signed-off-by: David Kershner <david.kershner@unisys.com>
Acked-By: Neil Horman <nhorman@tuxdriver.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
dev->pausing = false;
- visorchipset_device_pause_response(dev, status);
+ device_pause_response(dev, status);
}
/**
void (*notify_func)(struct visor_device *dev, int response) = NULL;
if (is_pause)
- notify_func = visorchipset_device_pause_response;
+ notify_func = device_pause_response;
else
notify_func = device_resume_response;
if (!notify_func)
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);
-void visorchipset_device_pause_response(struct visor_device *p,
- int response);
+void device_pause_response(struct visor_device *p, int response);
/* visorbus init and exit functions */
int visorbus_init(void);
}
void
-visorchipset_device_pause_response(struct visor_device *dev_info,
- int response)
+device_pause_response(struct visor_device *dev_info,
+ int response)
{
device_changestate_responder(CONTROLVM_DEVICE_CHANGESTATE,
dev_info, response,