[PATCH 00/10] parser header and c file patches

2014-12-01 Thread Jeffrey Brown
as well. Jeffrey Brown (10): staging: unisys: parser_init camel cases staging: unisys: parser_init_byteStream camel case staging: unisys: simpleString_get byteStream_get camel case staging: unisys: PARSER_CONTEXT typedef staging: unisys: PARSER_WHICH_STRING typedef staging: unisys

[PATCH 2/4] staging: unisys: uisutils.h and uisutils.c proc code

2014-12-01 Thread Jeffrey Brown
Left the functions uisutil_add_proc_line_ex in both files alone because they were declared in the files and not pulled from the proc header file. However the PROC_READ_BUFFER_SIZE was changed to READ_BUFFER_SIZE in the files. PROC_READ_BUFFER_SIZE = READ_BUFFER_SIZE Signed-off-by: Jeffrey Brown

[PATCH 1/4] staging: unisys: visorchipset proc code

2014-12-01 Thread Jeffrey Brown
Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/include/uisqueue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/include/uisqueue.h b/drivers/staging/unisys/include/uisqueue.h index 25b6181..6ddc0bf 100644

[PATCH 01/10] staging: unisys: parser_init camel cases

2014-12-01 Thread Jeffrey Brown
Fixed camel cases for parser_init isLocal = is_local tryAgain = try_again Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- drivers/staging/unisys/visorchipset/parser.h | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff

[PATCH 02/10] staging: unisys: parser_init_byteStream camel case

2014-12-01 Thread Jeffrey Brown
Changed the camel cases for the struct parser_init_bytestream parser_init_byteStream = parser_init_bytestream isLocal = is_local tryAgain = try_again Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c| 4 ++-- drivers/staging/unisys

[PATCH 05/10] staging: unisys: PARSER_WHICH_STRING typedef

2014-12-01 Thread Jeffrey Brown
Removed the typedef of PARSER_WHICH_STRING and replaced all instance of the typedef with enum parser_which_string. Also changed the name of it to parser_which_string PARSER_WHICH_STRING = parser_which_string Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 3/4] staging: unisys: timskmod proc code

2014-12-01 Thread Jeffrey Brown
This one was a little weird. I replaced all code implemented from the procobjecttree.h with debugfs code, then deleted procobjecttree.h and procobjecttree.c. After that I removed the Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/include/procobjecttree.h

[PATCH 06/10] staging: unisys: Controlvm_Payload_Bytes_Buffered camel case

2014-12-01 Thread Jeffrey Brown
Changed the camel case of the static ulong Controlvm_Payload_Bytes_ Buffered Controlvm_Payload_Bytes_Buffered =controlvm_payload_bytes_buffered Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 8 1 file changed, 4 insertions(+), 4

[PATCH 07/10] staging: unisys: parser_init_guts and parser_param_start camel case

2014-12-01 Thread Jeffrey Brown
Fixed camel cases in the struct parser_init_guts and an Away camel case in parser_param_start isLocal = is_local tryAgain = try_again HasStandardPayloadHeader = has_standard_payload_header Away = cleanups Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 4/4] staging: unisys: uislib.c proc code

2014-12-01 Thread Jeffrey Brown
= DebugfsReadBufferValid ProcReadBuffer = DebugfsReadBuffer Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/uislib/uislib.c | 36 +- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/drivers/staging/unisys/uislib/uislib.c b

[PATCH 04/10] staging: unisys: PARSER_CONTEXT typedef

2014-12-01 Thread Jeffrey Brown
Completely removed all trace of the typedef of PARSER_CONTEXT and replaced all instance of that typedef with parser_context_tag also changed PARSER_CONTEXT_Tag PARSER_CONTEXT_Tag = parser_context_tag Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 08/10] staging: unisys: parser.c space after casts

2014-12-01 Thread Jeffrey Brown
Removed all spaces after casts in parser.c Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/parser.c b/drivers/staging

[PATCH 09/10] staging: unisys: parser.c braces

2014-12-01 Thread Jeffrey Brown
Inserted a necessary brace for an if statement on line 146 of parser.c Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/parser.c b

[PATCH 10/10] staging: unisys: parser.c logical continuation

2014-12-01 Thread Jeffrey Brown
Fixed a logical continuation on line 391 by placing the '||' operator on line 390 Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset

[PATCH 03/10] staging: unisys: simpleString_get byteStream_get camel case

2014-12-01 Thread Jeffrey Brown
Fixed the camel case for parser_byteStream_get and parser_simpleString_get parser_simpleString_get = parser_simplestring_get parser_byteStream_get = parser_bytestream_get Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- drivers

[PATCH 04/10] staging: unisys: PARSER_CONTEXT typedef

2014-12-01 Thread Jeffrey Brown
Completely removed all trace of the typedef of PARSER_CONTEXT and replaced all instance of that typedef with parser_context_tag also changed PARSER_CONTEXT_Tag PARSER_CONTEXT_Tag = parser_context_tag Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 07/10] staging: unisys: parser_init_guts and parser_param_start camel case

2014-12-01 Thread Jeffrey Brown
Fixed camel cases in the struct parser_init_guts and an Away camel case in parser_param_start isLocal = is_local tryAgain = try_again HasStandardPayloadHeader = has_standard_payload_header Away = cleanups Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 10/10] staging: unisys: parser.c logical continuation

2014-12-01 Thread Jeffrey Brown
Fixed a logical continuation on line 391 by placing the '||' operator on line 390 Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset

[PATCH 01/10] staging: unisys: parser_init camel cases

2014-12-01 Thread Jeffrey Brown
Fixed camel cases for parser_init isLocal = is_local tryAgain = try_again Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- drivers/staging/unisys/visorchipset/parser.h | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff

[PATCH 02/10] staging: unisys: parser_init_byteStream camel case

2014-12-01 Thread Jeffrey Brown
Changed the camel cases for the struct parser_init_bytestream parser_init_byteStream = parser_init_bytestream isLocal = is_local tryAgain = try_again Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c| 4 ++-- drivers/staging/unisys

[PATCH 08/10] staging: unisys: parser.c space after casts

2014-12-01 Thread Jeffrey Brown
Removed all spaces after casts in parser.c Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/parser.c b/drivers/staging

[PATCH 00/10] parser patches v2

2014-12-01 Thread Jeffrey Brown
as well. Jeffrey Brown (10): staging: unisys: parser_init camel cases staging: unisys: parser_init_byteStream camel case staging: unisys: simpleString_get byteStream_get camel case staging: unisys: PARSER_CONTEXT typedef staging: unisys: PARSER_WHICH_STRING typedef staging: unisys

[PATCH 05/10] staging: unisys: PARSER_WHICH_STRING typedef

2014-12-01 Thread Jeffrey Brown
Removed the typedef of PARSER_WHICH_STRING and replaced all instance of the typedef with enum parser_which_string. Also changed the name of it to parser_which_string PARSER_WHICH_STRING = parser_which_string Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 1/1] staging: unisys: parser.c bug

2014-11-17 Thread Jeffrey Brown
From: Jeff jeffrey.br...@unisys.com Replaced cleanups: with err_rgn, err_ctx, and out_rgn in the file. This is to have proper error and success handling. I also removed the variable rc because like cleanups, rc is redundant in this file Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com

[PATCH 1/1] staging: unisys: parser.c bug

2014-11-17 Thread Jeffrey Brown
Replaced cleanups: with err_rgn, err_ctx, and out_rgn in the file. This is to have proper error and success handling. I also removed the variable rc because like cleanups, rc is redundant in this file Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 1/1] staging: unisys: small parser.c bug fix

2014-11-14 Thread Jeffrey Brown
Replaced cleanups in the struct parser_init_guts with err_rgn, err_ctx, and out_rgn. The purpose is to remove redundant code and have proper error handling Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 43 +++-- 1

[PATCH 1/1] staging: unisys: small parser.c bug fix

2014-11-14 Thread Jeffrey Brown
Replaced cleanups in the struct parser_init_guts with err_rgn, err_ctx, and out_rgn. The purpose is to remove redundant code and have proper error handling. Put goto out_rgn on lin 108 because there was no out_ctx. Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 08/10] staging: unisys: parser.c space after casts

2014-11-12 Thread Jeffrey Brown
Removed all spaces after casts in parser.c Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/parser.c b/drivers/staging

[PATCH 06/10] staging: unisys: Controlvm_Payload_Bytes_Buffered camel case

2014-11-12 Thread Jeffrey Brown
Changed the camel case of the static ulong Controlvm_Payload_Bytes_ Buffered Controlvm_Payload_Bytes_Buffered =controlvm_payload_bytes_buffered Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 8 1 file changed, 4 insertions(+), 4

[PATCH 04/10] staging: unisys: PARSER_CONTEXT typedef

2014-11-12 Thread Jeffrey Brown
Completely removed all trace of the typedef of PARSER_CONTEXT and replaced all instance of that typedef with parser_context_tag also changed PARSER_CONTEXT_Tag PARSER_CONTEXT_Tag = parser_context_tag Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 00/10] parser.h and parser.c patches

2014-11-12 Thread Jeffrey Brown
Sorry for all of the messy patches from before but here are the improved patches for parser.h and parser.c. The camel cases are grouped on functions and structs that occurs in both files. Jeffrey Brown (10): staging: unisys: parser_init camel cases staging: unisys: parser_init_byteStream

[PATCH 01/10] staging: unisys: parser_init camel cases

2014-11-12 Thread Jeffrey Brown
Fixed camel cases for parser_init isLocal = is_local tryAgain = try_again Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- drivers/staging/unisys/visorchipset/parser.h | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff

[PATCH 02/10] staging: unisys: parser_init_byteStream camel case

2014-11-12 Thread Jeffrey Brown
Changed the camel cases for the struct parser_init_bytestream parser_init_byteStream = parser_init_bytestream isLocal = is_local tryAgain = try_again Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c| 4 ++-- drivers/staging/unisys

[PATCH 07/10] staging: unisys: parser_init_guts and parser_param_start camel case

2014-11-12 Thread Jeffrey Brown
Fixed camel cases in the struct parser_init_guts and an Away camel case in parser_param_start isLocal = is_local tryAgain = try_again HasStandardPayloadHeader = has_standard_payload_header Away = cleanups Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 05/10] staging: unisys: PARSER_WHICH_STRING typedef

2014-11-12 Thread Jeffrey Brown
Removed the typedef of PARSER_WHICH_STRING and replaced all instance of the typedef with enum parser_which_string. Also changed the name of it to parser_which_string PARSER_WHICH_STRING = parser_which_string Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 09/10] staging: unisys: parser.c braces

2014-11-12 Thread Jeffrey Brown
Inserted a necessary brace for an if statement on line 146 of parser.c Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/parser.c b

[PATCH 03/10] staging: unisys: simpleString_get byteStream_get camel case

2014-11-12 Thread Jeffrey Brown
Fixed the camel case for parser_byteStream_get and parser_simpleString_get parser_simpleString_get = parser_simplestring_get parser_byteStream_get = parser_bytestream_get Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- drivers

[PATCH 10/10] staging: unisys: parser.c logical continuation

2014-11-12 Thread Jeffrey Brown
Fixed a logical continuation on line 391 by placing the '||' operator on line 390 Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset

[PATCH 04/71] staging: unisys: kzalloc visorchipset_main.c

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Inserted preferred sizeof statements for kzalloc in visorchipset_ main.c line 1127: kzalloc(sizeof(*pBusInfo)...) line 1277: kzalloc(sizeof(*pDevInfo)...) Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 00/71] visorchipset_main.c patches

2014-11-12 Thread Jeffrey Brown
I am really sorry about the exterme number of patches I gave you, it was a very large file to take care of I could make the number of patches a little less if you want. The patches start off simple by taking care of trivial stuff like alignment and space after casts. The patches go into the camel

[PATCH 05/71] staging: unisys: visorchipset_main.c braces and spaces

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Inserted and formatted braces properly, also removed unnecessary spaces that were usually surrounding the braces Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 24 +- 1

[PATCH 01/71] staging: unisys: space after a cast visorchipset_main.c

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Removed all spaces after casts in visorchipset_main.c Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 62 +++--- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git

[PATCH 41/71] staging: unisys: textId camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the u32 textId to textid in the static ssize_ts textid_show and textid_store textId = textid Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 12 ++-- 1 file changed, 6

[PATCH 10/71] staging: unisys: NotifierLock camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Replaced the static DEFINE_SEMAPHORE NotifierLock with notifierlock NotifierLock = notifierlock Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../staging/unisys/visorchipset/visorchipset_main.c| 18 +- 1 file changed, 9

[PATCH 13/71] staging: unisys: invalid bus/device number camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed two static ulongs that are supposed to represent invalid bus/device numbers g_diagpoolBusNo = g_diagpoolbusno g_diagpoolDevNo = g_diagpooldevno Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../staging/unisys/visorchipset

[PATCH 34/71] staging: unisys: Controlvm_Pending_Msg_Valid camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static BOOL to controlvm_pending_msg_valid Controlvm_Pending_Msg_Valid = controlvm_pending_msg_valid Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 8 1 file changed

[PATCH 39/71] staging: unisys: toolAction camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases of toolAction to toolaction in the static ssize_ts toolaction_store, and toolaction_show toolAction = toolaction Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 12

[PATCH 36/71] staging: unisys: MajorDev camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static dev_t at line 252 to majordev Major = majordev Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[PATCH 03/71] staging: unisys: visorchipset_main.c logical continuations

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Fixed all logical continuations by moving the operators to their correct lines, (which is the line previous to the operator) Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 23

[PATCH 18/71] staging: unisys: LIVEDUMP_INFO camel cases

2014-11-12 Thread Jeffrey Brown
-by: Jeffrey Brown jeffrey.br...@unisys.com --- 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

[PATCH 02/71] staging: unisys: Alignment fixes visorchipset_main.c

2014-11-12 Thread Jeffrey Brown
Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 166 +++-- 1 file changed, 89 insertions(+), 77 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset

[PATCH 26/71] staging: unisys: Parahotplug_request_list camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static LIST_HEAD to parahotplug_request_list Parahotplug_request = parahotplug_request Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 8 1 file changed, 4 insertions

[PATCH 42/71] staging: unisys: remainingSteps camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel case of remainingSteps in the static ssize_ts of remaining_steps_show and remaining_steps_store remainingSteps = remainingsteps Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 38/71] staging: unisys: controlvm prototype camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel case msgHdr to msghdr in the static voids controlvm_respond, controlvm_respond_chipset_init, controlvm_- respond_physdev_changestate msgHdr = msghdr Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 47/71] staging: unisys: visorchipset_save_message camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases for the void visorchipset_save_message localSavedCrashMsgOffset - localsavedcrashmsgoffset localSavedCrashMsgCount - localsavedcrashmsgcount Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../staging/unisys/visorchipset

[PATCH 31/71] staging: unisys: device_destroy_response camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases for the static void device_destroy_response busNo - busno devNo - devno Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3

[PATCH 09/71] stating: unisys: Periodic_controlvm_workqueue camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed this static struct pointer to periodic_controlvm_workqueue Periodic_controlvm_workqueue = periodic_controlvm_workqueue Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../staging/unisys/visorchipset/visorchipset_main.c| 18

[PATCH 44/71] staging: unisys: devInfo_clear camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static void devInfo_clear to devinfo_clear devInfo_clear = devinfo_clear Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions

[PATCH 07/71] staging: unisys: Most_recent_message_jiffies

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static ulong to most_recent_message_jiffies Most_recent_message_jiffies = most_recent_message_jiffies Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 8 1 file changed

[PATCH 25/71] staging: unisys: atomic_t camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the varaible Visorchipset_cache_buffers_in_use to visorchipset_cache_buffers_in_use Visorchipset_cache_buffer_in_use =visorchipset_cache_buffer_in_use Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 08/71] staging: unisys: Periodic_controlvm_work camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed this camel case to periodic_controlvm_work Periodic_controlvm_work = periodic_controlvm_work Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 14 +++--- 1 file changed, 7

[PATCH 06/71] staging: unisys: Poll_jiffies camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static ulong Poll_jiffies to poll_jiffies using refactor and rename Poll_jiffies = poll_jiffies Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../staging/unisys/visorchipset/visorchipset_main.c | 20 ++-- 1 file

[PATCH 19/71] staging: unisys: Controlvm_payload_info camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed this variable to controlvm_payload_info Controlvm_payload_info = controlvm_payload_info Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 8 1 file changed, 4 insertions

[PATCH 14/71] staging: unisys: controlvm_message_packet camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel case g_DeviceChangeStatePacket to g_deicechange- statepacket g_DeviceChangeStatePacket = g_devicechangestatepacket Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 10

[PATCH 23/71] staging: unisys: Putfile_buffer_list_pool camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static struct Putfile_buffer_list_pool to putfile_buffer_list_pool Putfile_buffer_list_pool = putfile_buffer_list_pool Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 12

[PATCH 60/71] staging: unisys: initialize_controlvm_payload camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Fixed the static void initialize_controlvm_payload camel cases payloadOffset - payloadoffset payloadBytes - payloadbytes Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 10 +- 1

[PATCH 32/71] staging: unisys: device_resume_response camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases fore the static void device_resume_response busNo - busno devNo - devno Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3

[PATCH 12/71] staging: unisys: static const uuid_le camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the uuid_le UltraDiagpoolChannelProtocolGuid to ultradiagpoolchannelprotocolguid in visorchipset_main.c UltraDiagpoolChannelProtocolGuid = ultradiagpoolchannelprotocolguid Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging

[PATCH 43/71] staging: unisys: busInfo_clear camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Chagned the static void's name to businfo_clear busInfo_clear = businfo_clear Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions

[PATCH 24/71] staging: unisys: Putfile_request_list camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static LIST_HEAD to putfile_request_list Putfile_request_list = putfile_request_list Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH 30/71] staging: unisys: device_create_response camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases for ethe static void device_create_response busNo = busno devNo = devno Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3

[PATCH 52/71] staging: unisys: device_epilog camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases in the static void device_epilog busNo - busno devNo - devNo msgHdr - msghdr needResponse - needresponse pDevInfo - pdevinfo Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c

[PATCH 27/71] staging: unisys: visorchipset_busdev_notifiers camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases that manages the info for a CONTROLVM_DUMP_ CAPTURESTATE and CONTROLVM/REPORTEVENT BusDev_Server_Notifiers = busdev_server_notifiers BusDev_Client_Notifiers = busdev_client_notifiers Signed-off-by: Jeffrey Brown jeffrey.br

[PATCH 45/71] staging: unisys: chipset_init camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Cleaned up all of the camel cases in the static void chipset_init Away - cleanups Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions

[PATCH 20/71] staging: unisys: Livedump_info camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed this static struct LIVEDUMP_INFO into livedump_info Livedump_info = livedump_info Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3

[PATCH 69/71] staging: unisys: CONTROLVM_PAYLOAD_INFO typedef

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the typedef struct CONTROLVM_PAYLOAD_INFO on line 107 to a normal struct and replaced every instnace of CONTROLVM_PAYLOAD_INFO with struct CONTROLVM_PAYLOAD_INFO Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

[PATCH 70/71] staging: unisys: LIVEDUMP_INFO typedef

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the typedef LIVEDUMP_INFO to a normal struct and replaced the only other instance of LIVEDUMP_INFO to struct LIVEDUMP_INFO on line 133 Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c

[PATCH 46/71] staging: unisys: controlvm camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel case of msgHdr for the static voids of controlvm_respond, controlvm_init_response, cnotrolvm_respond_- chipset_init, controlvm_respond_physdev_changestate msgHdr = msghdr Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com

[PATCH 21/71] staging: unisys: Controlvm_pending_msg camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed this variable to controlvm_pending_msg Controlvm_pending_msg = controlvm_pending_msg Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3

[PATCH 11/71] staging: unisys: controlvm_message_header camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases of three controlvm_message_headers that are related to each other g_DiagMsgHdr = g_diagmsghdr g_ChipsetMsgHdr = g_chipsetmsghdr g_DelDumpMsgHdr = g_deldumpmsghdr Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys

[PATCH 65/71] staging: unisys: visorchipset_init camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Fixed camel cases in the static int _init at line 2365 Away - cleanups Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions

[PATCH 17/71] staging: unisys: Test_Vnic_channel camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed this channel header to test_vnic_channel in visorchipset_main.c Test_Vnic_channel = test_vnic_channel Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 ++-- 1 file changed, 2

[PATCH 29/71] staging: unisys: bus_destroy_response camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases for the static void bus_destroy_response busNo = busno Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions

[PATCH 49/71] staging: unisys: device_changestate_responder camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases in the static void device_changestate_responders cmdId - cmdid busNo - busno devNo - devno responseState - responsestate Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../staging/unisys/visorchipset/visorchipset_main.c

[PATCH 37/71] staging: unisys: platform_device camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static platform_device Visorchipset_platform_device to visorchipset_platform_device Visorchipset_platform_device = visorchipset_platform_device Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 33/71] staging: unisys: BusDev_Responders camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the static struct to busdev_responders BusDev_Responders = busdev_responders Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions

[PATCH 15/71] staging: unisys: LIST_HEAD info list camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases for LIST_HEAD BusInfoList and DevInfoList BusInfoList = businfolist DevInfoList = devinfolist Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 48

[PATCH 22/71] staging: unisys: Putfile_buffer_list_pool_name camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed this static const char to putfile_buffer_list_pool_name Putfile_buffer_list_pool_name = putfile_buffer_list_pool_name Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 ++-- 1 file

[PATCH 67/71] staging: unisys: Unnecessary parentheses

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Removed the unnecessasry parentheses around req-list on line 1776 Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers

[PATCH 16/71] staging: unisys: Controlvm_channel camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel case for Controlvm_channel to controlvm_channel on line 105 Controlvm_channel = controlvm_channel Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 78 +++--- 1

[PATCH 51/71] staging: unisys: bus_epilog camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Fixed all camel cases in the static void bus_epilog busNo - busno msgHdr - msghdr needResponse - needresponse pBusInfo - pbusinfo Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 32

[PATCH 64/71] staging: unisys: setup_crash_devices_work_queue camel cases

2014-11-12 Thread Jeffrey Brown
- localsavedcrashmsgcount Away - cleanups Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 40 +++--- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers

[PATCH 63/71] staging: unisys: controlvm_periodic_work camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Fixed the camel cases for the static void controlvm_periodic_work gotAcommand - gotacommand chanInfo - chaninfo Poll_Count - poll_count Away - cleanups Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c

[PATCH 58/71] staging: unisys: my_device_destroy camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com 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.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 26

[PATCH 28/71] staging: unisys: bus_create_response camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases for the static void bus_create_response busNo = busno Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions

[PATCH 61/71] staging: unisys: chipset camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Fixed the camel cases for the static voids: chipset_ready, chipset_ selftest, chipset_notready msgHdr - msghdr Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../unisys/visorchipset/visorchipset_main.c| 22 +++--- 1 file

[PATCH 48/71] staging: unisys: bus_responder camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases in the static void bus_responder cmdId - cmdid busNo - busno Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- .../staging/unisys/visorchipset/visorchipset_main.c | 20 ++-- 1 file changed, 10 insertions

[PATCH 59/71] staging: unisys: initialize_controlvm_payload_info camel case

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Fixed the camel cases in the static int initialize_controlvm_ payload_info Away - cleanups Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 8 1 file changed, 4 insertions(+), 4

[PATCH 68/71] staging: unisys: MESSAGE_ENVELOPE typedef

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the typedef struct MESSAGE ENVELOPE on line 74 to a normal struct. Also replaced all instances of MESSAGE_ENVELOPE with MESSAGE_ENVELOPE Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 40/71] staging: unisys: efisparindication camel cases

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Changed the camel caes of EfiSparIndication to efisparindication in the static ssize_ts of boottotool_store and boottotool_show EfiSparIndication = efisparindication Signed-off-by: Jeffrey Brown jeffrey.br...@unisys.com --- drivers/staging/unisys

  1   2   >