SHORT TERM INVESTMENT IN YOUR COUNTRY!!

2016-01-12 Thread Attorney Jeffrey Carney
on your ability and your good-will. Indeed i will appreciate your understanding as regards this development. Please, do not fail to enclose your direct telephone number so as to speak with you directly. Regards, Mr Jeffrey Carney --- This email has been checked for viruses by Avast antivirus

[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 11/15] staging: unisys: Controlvm_payload_bytes_buffered camel case

2014-11-12 Thread Jeffrey
Changed the static ulong the file parser.c Controlvm_payload_bytes_buffered =controlvm_payload_bytes_buffered Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers

[PATCH 15/15] staging: unisys: parser_param_start camel cases

2014-11-12 Thread Jeffrey
Fixed camel cases in the void parser_param_start in parser.c Away = cleanups Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/parser.c

[PATCH 04/15] staging: unisys: parser_simpleString_get camel case

2014-11-12 Thread Jeffrey
changed the char pointer parser_simpleString_get to parser_simple- string_get in the file parser.h and this affected the file parser.h parser_simpleString_get = parser_simplestring_get Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |2

[PATCH 14/15] staging: unisys: parser_init_bytestream camel cases parser.c

2014-11-12 Thread Jeffrey
Fixed the camel cases in parser_init_bytestream in parser.c isLocal = is_local tryAgain = tryagain Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys

[PATCH 01/15] staging: unisys: PARSER_CONTEXT_Tag camel case

2014-11-12 Thread Jeffrey
Changed the camel case PARSER_CONTEXT_Tag to parser_context_tag in the files parser.h and parser.c PARSER_CONTEXT_Tag = parser_context_tag Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |2 +- drivers/staging/unisys/visorchipset/parser.h

[PATCH 10/15] staging: unisys: braces parser.c camel case

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

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

2014-11-12 Thread Jeffrey
other files Jeffrey (15): staging: unisys: PARSER_CONTEXT_Tag camel case staging: unisys: parser_init parser_init_byteStream camel case staging: unisys: parser_init_byteStream camel case staging: unisys: parser_simpleString_get camel case staging: unisys: parser_byteStream_get camel case

[PATCH 12/15] staging: unisys: parser_init_guts camel cases

2014-11-12 Thread Jeffrey
Fixed the camel cases for the arguments inside the struct parser_init_struct isLocal = is_local tryAgain = tryagain Away = cleanups hasStandardPayloadHeader = has_standard_payload_header Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c | 42

[PATCH 09/15] staging: unisys: Logical continuation parser.c

2014-11-12 Thread Jeffrey
Put || operator on line 390 where it belongs, to have a proper logical continuation Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset

[PATCH 07/15] staging: unisys: PARSER_WHICH_STRING typedef

2014-11-12 Thread Jeffrey
Removed the typedef PARSER_WHICH_STRING in parser.h and added enum in front of it at every instance of the variable in parser.c, and parser.h Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |2 +- drivers/staging/unisys/visorchipset/parser.h

[PATCH 05/15] staging: unisys: parser_byteStream_get camel case

2014-11-12 Thread Jeffrey
Changed the camel case parser_byteStream_get to parser_bytestream_ get in parser.h and this also changed in the file parser.c parser_byteStream = parser_bytestream Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |2 +- drivers/staging/unisys

[PATCH 02/15] staging: unisys: parser_init parser_init_byteStream camel case

2014-11-12 Thread Jeffrey
Fixed all of the camel cases in the two structs parser_init and parser_init_byteStream in parser.h isLocal = is_local tryAgain = tryagain Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions

[PATCH 06/15] staging: unisys: PARSER_CONTEXT typedef

2014-11-12 Thread Jeffrey
Removed typedef declaration for PARSER_CONTEXT on line 34 of parser.h and replaced every instance of PARSER_CONTEXT with struct parser_context_tag because PARSER_CONTEXT is actually parser_context_tag Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset

[PATCH 13/15] staging: unisys: parser_init camel cases parser.c

2014-11-12 Thread Jeffrey
Fixed the camel cases inside the definition of the struct parser_init in parser.c isLocal = is_local tryAgain = tryagain Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH 03/15] staging: unisys: parser_init_byteStream camel case

2014-11-12 Thread Jeffrey
Changed the struct pointer parser_init_byteStream to parser_init_bytestream on line 37 in parser.h, parser.c and visor- chipset_main.c parser_init_byteStream = parser_init_bytestream Signed-off-by: Jeffrey jeffrey.br...@unisys.com --- drivers/staging/unisys/visorchipset/parser.c |2

[PATCH 08/15] staging: unisys: spaces after casts parser.c

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

[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
cases. The camel cases are grouped based on the name of the function or structs they are in. If they don't belong to one then they get a patch on their own. Last but not least the typedefs are done and the array checks are fixed Jeffrey (71): staging: unisys: space after a cast

[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
From: Jeffrey jeffrey.br...@unisys.com Changed the camel cases for the variables for the struct LIVEDUMP_ INFO Dumpcapture_header = dumpcapture_header Gettextdump_header = gettextdump_header Dumpcomplete_header = dumpcomplete_header Gettextdump_outstanding = gettextdump_outstanding Signed-off

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

2014-11-12 Thread Jeffrey Brown
From: Jeffrey jeffrey.br...@unisys.com Fixed all alignment issues in visorchipset_main.c, kept the 80 character warnings in mind when doing so, and if there are any warnings coming from this patch it is most likely that there was an 80 character warning at the line before I fixed the alignment

[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

  1   2   >