[PATCH] Staging: rtl8821ae: base: add missing blank line after declaration

2014-09-03 Thread An Ha
Add a missing blank line after declaration to fix coding style issue. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/base.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/staging/rtl8821ae/base.c b/drivers/staging/rtl8821ae/base.c index 4a36da0..dbf28ce 100644 --- a/drivers

[PATCH 4/5] Staging: rtl8821ae: hal_bt_coexist: fix curly brace placement

2014-09-02 Thread An Ha
Fix coding style issue where the if statement unnecessarily uses curly braces for one line statements and where the else conditional statement should follow the closing curly brace '}'. Also, the open curly brace '{' should be on the same line as the if statement.

[PATCH 3/5] Staging: rtl8821ae: hal_bt_coexist: fix pointer placement coding style issue

2014-09-02 Thread An Ha
Fix pointer placement coding style issue, where using "foo *" is preferable over "foo*". Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae

[PATCH 5/5] Staging: rtl8821ae: hal_bt_coexist: add a blank newline

2014-09-02 Thread An Ha
Fix coding style issue which requires a blank line after declarations. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drivers/staging/rtl8821ae/rtl8821ae

[PATCH 2/5] Staging: rtl8821ae: hal_bt_coexist: add/remove spaces

2014-09-02 Thread An Ha
Fix coding style issue which requires a space before the open curly brace '{', after the open parenthesis '(', after a comma, and after the equal sign '=' in an assignment. Also, remove unnecessary whitespace after open parenthesis '(' and before

[PATCH 1/5] Staging: rtl8821ae: hal_bt_coexist: fix commenting style

2014-09-02 Thread An Ha
Fix commenting style from C99 comments to C89 comments Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drivers/staging/rtl8821ae/rtl8821ae

[PATCH 10/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Fix coding style issue where the open curly brace '{' should be on the same line as the if statement. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/rtl8821ae

[PATCH 05/12] Staging: rtl8821ae: hal_bt_coexist: fix pointer placement coding style issue

2014-09-01 Thread An Ha
Fix pointer placement coding style issue, where using "foo *" is preferable over "foo*". Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae

[PATCH 07/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Remove unnecessary whitespace before a quoted newline. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drivers/staging/rtl8821ae

[PATCH 12/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Fix coding style issue which requires a blank line after declarations. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drivers/staging/rtl8821ae/rtl8821ae

[PATCH 02/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Fix coding style issue which requires a space before the open curly brace '{'. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c

[PATCH 09/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Fix coding style issue where the else conditional statement should follow the closing curly brace '}'. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/rtl8821ae

[PATCH 11/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Fix coding style issue which requires a space after the equal sign '='. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drive

[PATCH 08/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Fix coding style issue where the if statement unnecessarily uses curly braces for one line statements. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 15 ++- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/drivers/staging/rtl8821ae

[PATCH 01/12] Staging: rtl8821ae: hal_bt_coexist: fix commenting style

2014-09-01 Thread An Ha
Fix commenting style from C99 comments to C89 comments Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drivers/staging/rtl8821ae/rtl8821ae

[PATCH 03/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Fix coding style issue which requires a space after the open parenthesis '('. Signed-off-by: An Ha --- .../staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 50 +++--- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/drivers/staging/rtl8821ae

[PATCH 04/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Fix coding style issue which requires a space after a comma. Signed-off-by: An Ha --- .../staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 26 +++--- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drivers

[PATCH 06/12] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-09-01 Thread An Ha
Remove whitespace after open parenthesis '('. Signed-off-by: An Ha --- drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drivers/staging/rtl8821ae

[PATCH] Staging: rtl8821ae: hal_bt_coexist: fix coding style issue

2014-08-30 Thread An Ha
ts to C89 comments Signed-off-by: An Ha --- .../staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c | 102 ++--- 1 file changed, 49 insertions(+), 53 deletions(-) diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c b/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c