From: Jeffrey <Jeffrey.Brown@xxxxxxxxxx> Changed the static BOOL to controlvm_pending_msg_valid Controlvm_Pending_Msg_Valid => controlvm_pending_msg_valid Signed-off-by: Jeffrey Brown <Jeffrey.Brown@xxxxxxxxxx> --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c index 5096a85..887e3be 100644 --- a/drivers/staging/unisys/visorchipset/visorchipset_main.c +++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c @@ -137,7 +137,7 @@ static LIVEDUMP_INFO livedump_info; * process it again the next time controlvm_periodic_work() runs. */ static struct controlvm_message controlvm_pending_msg; -static BOOL ControlVm_Pending_Msg_Valid = FALSE; +static BOOL controlvm_pending_msg_valid = FALSE; /* Pool of struct putfile_buffer_entry, for keeping track of pending (incoming) * TRANSMIT_FILE PutFile payloads. @@ -1994,13 +1994,13 @@ controlvm_periodic_work(struct work_struct *work) } } if (!gotACommand) { - if (ControlVm_Pending_Msg_Valid) { + if (controlvm_pending_msg_valid) { /* we throttled processing of a prior * msg, so try to process it again * rather than reading a new one */ inmsg = controlvm_pending_msg; - ControlVm_Pending_Msg_Valid = FALSE; + controlvm_pending_msg_valid = FALSE; gotACommand = TRUE; } else { gotACommand = read_controlvm_event(&inmsg); @@ -2023,7 +2023,7 @@ controlvm_periodic_work(struct work_struct *work) */ handle_command_failed = TRUE; controlvm_pending_msg = inmsg; - ControlVm_Pending_Msg_Valid = TRUE; + controlvm_pending_msg_valid = TRUE; } } -- 1.8.4 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel