mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 01:36:52 +09:00
staging: unisys: fix CamelCase in visorchipset_device_pause_response()
Fix CamelCase parameters: busNo => bus_no devNo => dev_no Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1e7a59c146
commit
8420f417e5
@@ -270,7 +270,8 @@ visorchipset_register_busdev_server(
|
||||
typedef void (*SPARREPORTEVENT_COMPLETE_FUNC) (struct controlvm_message *msg,
|
||||
int status);
|
||||
|
||||
void visorchipset_device_pause_response(ulong busNo, ulong devNo, int response);
|
||||
void visorchipset_device_pause_response(ulong bus_no, ulong dev_no,
|
||||
int response);
|
||||
|
||||
BOOL visorchipset_get_bus_info(ulong busNo,
|
||||
struct visorchipset_bus_info *busInfo);
|
||||
|
||||
@@ -2184,11 +2184,11 @@ device_destroy_response(ulong busNo, ulong devNo, int response)
|
||||
}
|
||||
|
||||
void
|
||||
visorchipset_device_pause_response(ulong busNo, ulong devNo, int response)
|
||||
visorchipset_device_pause_response(ulong bus_no, ulong dev_no, int response)
|
||||
{
|
||||
|
||||
device_changestate_responder(CONTROLVM_DEVICE_CHANGESTATE,
|
||||
busNo, devNo, response,
|
||||
bus_no, dev_no, response,
|
||||
segment_state_standby);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(visorchipset_device_pause_response);
|
||||
|
||||
Reference in New Issue
Block a user