Re: [PATCH] tty: serial: jsm: remove redundant pointer ts

2017-11-07 Thread Guilherme G. Piccoli
On 11/07/2017 09:41 AM, Colin King wrote: > From: Colin Ian King > > Pointer ts is assigned a value that is never read, ts is therefore > redundant and can be removed. Cleans up clang warning: > > drivers/tty/serial/jsm/jsm_tty.c:285:2: warning: Value stored to 'ts' >

Re: [PATCH] tty: serial: jsm: remove redundant pointer ts

2017-11-07 Thread Guilherme G. Piccoli
On 11/07/2017 09:41 AM, Colin King wrote: > From: Colin Ian King > > Pointer ts is assigned a value that is never read, ts is therefore > redundant and can be removed. Cleans up clang warning: > > drivers/tty/serial/jsm/jsm_tty.c:285:2: warning: Value stored to 'ts' > is never read > >

[PATCH] tty: serial: jsm: remove redundant pointer ts

2017-11-07 Thread Colin King
From: Colin Ian King Pointer ts is assigned a value that is never read, ts is therefore redundant and can be removed. Cleans up clang warning: drivers/tty/serial/jsm/jsm_tty.c:285:2: warning: Value stored to 'ts' is never read Signed-off-by: Colin Ian King

[PATCH] tty: serial: jsm: remove redundant pointer ts

2017-11-07 Thread Colin King
From: Colin Ian King Pointer ts is assigned a value that is never read, ts is therefore redundant and can be removed. Cleans up clang warning: drivers/tty/serial/jsm/jsm_tty.c:285:2: warning: Value stored to 'ts' is never read Signed-off-by: Colin Ian King ---