[PATCH v2 5/5] staging: wilc1000: Fixing struct definition layout

2017-05-02 Thread Vincent Siles
Split struct definition across multiple line to fit in the 80 characters limit Signed-off-by: Vincent Siles --- drivers/staging/wilc1000/wilc_debugfs.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/wilc_debugfs.c b/drivers/staging/wilc1000

[PATCH v2 4/5] staging: wilc1000: Function calls too long

2017-05-02 Thread Vincent Siles
Splitting function calls across multiple lines to fit in the 80 characters limit Signed-off-by: Vincent Siles --- drivers/staging/wilc1000/wilc_debugfs.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_debugfs.c b/drivers/staging/wilc1000

[PATCH v2 2/5] staging: wilc1000: Stripping '-' comments

2017-05-02 Thread Vincent Siles
Removing some '-' comments to fit in the 80 characters limit Signed-off-by: Vincent Siles --- drivers/staging/wilc1000/wilc_debugfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_debugfs.c b/drivers/staging/wilc1000/wilc

[PATCH v2 1/5] staging: wilc1000: Last line is empty

2017-05-02 Thread Vincent Siles
Removing empty line at the end of the file Signed-off-by: Vincent Siles --- drivers/staging/wilc1000/wilc_debugfs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/wilc1000/wilc_debugfs.c b/drivers/staging/wilc1000/wilc_debugfs.c index 7d32de9..5c93c7c 100644 --- a/drivers

[PATCH v2 0/5] staging: wilc1000: Fixing coding style: wilc_debugfs.c

2017-05-02 Thread Vincent Siles
v1: Fixing coding style of the file drivers/staging/wilc1000/wilc_debugfs.c v2: Correctly split pr_info string across multiple lines Splitting the patch: one patch per modification Better commit message Vincent Siles (5): staging: wilc1000: Last line is empty staging: wilc1000

[PATCH v2 3/5] staging: wilc1000: Function signature too long

2017-05-02 Thread Vincent Siles
Splitting functions signature across several lines to fin in the 80 characters limit Signed-off-by: Vincent Siles --- drivers/staging/wilc1000/wilc_debugfs.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_debugfs.c b/drivers/staging

[PATCH] staging: wilc1000: Fixing coding style issues

2017-05-02 Thread Vincent Siles
Here is the full patch after your review: Fixing coding style issues in drivers/staging/wilc1000/wilc_debugfs.c Thank you about the information for split strings, I didn't find the right way to do it. Best, V. Signed-off-by: Vincent Siles --- drivers/staging/wilc1000/wilc_debugfs.c

[PATCH] Fixing coding style issues in wilc1000/wilc_debugfs.c

2017-05-02 Thread Vincent Siles
Most of them were easily fixed. The only invasive fix was the split of the info string line 63 because: - it was too long - checkpath doesn't like 'quoted string split across lines' Signed-off-by: Vincent Siles --- drivers/staging/wilc1000/wilc_debugfs.c | 28