[Patch v2] staging fbtft: Fixed lines exceeding columns limit

2018-04-17 Thread Renato Soma
Fix checkpatch.pl warnings of lines exceeding 80 columns. Break lines in order to reduce instructions lengths to less than 80 columns. Signed-off-by: Renato Soma <renatoy...@gmail.com> --- Changes in v2: - Break lines respecting function parameters alignment. drivers/staging/fbtft

Re: [PATCH] staging fbtft: Fixed lines exceeding columns limit

2018-04-13 Thread Renato Soma
On Fri, Apr 13, 2018 at 03:57:47PM +0300, Dan Carpenter wrote: > > - ret = fbtft_write_buf_dc(par, par->buf, sizeof(data_type) + offset, 0); > > \ > > I feel like the original is basically OK but if we're going to change it > then align it like this: > > ret = fbtft_write_buf_dc(par,

[PATCH] staging fbtft: Fixed lines exceeding columns limit

2018-04-12 Thread Renato Soma
Fix checkpatch.pl warnings of line sizes exceeding 80 columns. Break lines in order to reduce the instructions lengths to less than 80 columns. Signed-off-by: Renato Soma <renatoy...@gmail.com> --- drivers/staging/fbtft/fbtft-bus.c | 13 + 1 file changed, 9 insertions(+), 4 del