From: Jeffrey <Jeffrey.Brown@xxxxxxxxxx> Fixed the camel cases in the static void my_device_destroy busNo -> busno devNo -> devno pDevInfo -> pdevinfo Away -> cleanups Signed-off-by: Jeffrey Brown <Jeffrey.Brown@xxxxxxxxxx> --- .../unisys/visorchipset/visorchipset_main.c | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c index 9b1d56b..7aac90e 100644 --- a/drivers/staging/unisys/visorchipset/visorchipset_main.c +++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c @@ -1355,31 +1355,31 @@ static void my_device_destroy(struct controlvm_message *inmsg) { struct controlvm_message_packet *cmd = &inmsg->cmd; - ulong busNo = cmd->destroy_device.bus_no; - ulong devNo = cmd->destroy_device.dev_no; - struct visorchipset_device_info *pDevInfo = NULL; + ulong busno = cmd->destroy_device.bus_no; + ulong devno = cmd->destroy_device.dev_no; + struct visorchipset_device_info *pdevinfo = NULL; int rc = CONTROLVM_RESP_SUCCESS; - pDevInfo = finddevice(&devinfolist, busNo, devNo); - if (!pDevInfo) { + pdevinfo = finddevice(&devinfolist, busno, devno); + if (!pdevinfo) { LOGERR("CONTROLVM_DEVICE_DESTROY Failed: busNo=%lu, devNo=%lu invalid", - busNo, devNo); + busno, devno); rc = -CONTROLVM_RESP_ERROR_DEVICE_INVALID; - goto Away; + goto cleanups; } - if (pDevInfo->state.created == 0) { + if (pdevinfo->state.created == 0) { LOGERR("CONTROLVM_DEVICE_DESTROY Failed: busNo=%lu, devNo=%lu already destroyed", - busNo, devNo); + busno, devno); rc = -CONTROLVM_RESP_ERROR_ALREADY_DONE; } -Away: - if ((rc >= CONTROLVM_RESP_SUCCESS) && pDevInfo) - device_epilog(busNo, devNo, segment_state_running, +cleanups: + if ((rc >= CONTROLVM_RESP_SUCCESS) && pdevinfo) + device_epilog(busno, devno, segment_state_running, CONTROLVM_DEVICE_DESTROY, &inmsg->hdr, rc, inmsg->hdr.flags.response_expected == 1, FOR_VISORBUS( - pDevInfo->chan_info.channel_type_uuid)); + pdevinfo->chan_info.channel_type_uuid)); } /* When provided with the physical address of the controlvm channel -- 1.8.4 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel