[PATCH] staging: gdm724x: Fix alignment in gdm_mux

2019-03-09 Thread Ignacio Losiggio
This patch modifies the alignment and linebreaks in gdm_mux in order to make the code more concise. Signed-off-by: Ignacio Losiggio --- drivers/staging/gdm724x/gdm_mux.c | 35 ++- drivers/staging/gdm724x/gdm_mux.h | 2 +- 2 files changed, 17 insertions(+), 20

Re: [PATCH] staging: gdm724x: Fix alignment in gdm_mux

2019-03-17 Thread Ignacio Losiggio
El dom, 17 de mar 2019 a las 8:23 AM, Greg KH escribió: For some of these, there is no real change needed, it's all up to the author's "taste", so they are not needed. Thanks for the feedback! I will send a revised version. ___ devel mailing list d

[PATCH v2 1/2] staging: gdm724x: Clean long function calls

2019-03-17 Thread Ignacio Losiggio
Signed-off-by: Ignacio Losiggio --- drivers/staging/gdm724x/gdm_mux.c | 28 ++-- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/drivers/staging/gdm724x/gdm_mux.c b/drivers/staging/gdm724x/gdm_mux.c index e2a050ba6fbb..fa8585ea1572 100644 --- a/drivers

[PATCH v2 2/2] staging: gdm724x: Do not break expressions

2019-03-17 Thread Ignacio Losiggio
When the entire expression can be shown in the same line breaking it makes it more difficult to read. Signed-off-by: Ignacio Losiggio --- drivers/staging/gdm724x/gdm_mux.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/staging/gdm724x/gdm_mux.c b/drivers