Re: [PATCH] tty: synclink_gt: remove redundant initialization of variable count

2021-04-20 Thread Jiri Slaby
On 20. 04. 21, 12:57, Colin King wrote: From: Colin Ian King The variable count is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ia

[PATCH] tty: synclink_gt: remove redundant initialization of variable count

2021-04-20 Thread Colin King
From: Colin Ian King The variable count is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King --- drivers/tty/synclink_gt.c | 2