Re: [PATCH] rtlwifi: remove redundant assignment to variable k

2019-06-24 Thread Kalle Valo
Colin King wrote: > From: Colin Ian King > > The assignment of 0 to variable k is never read once we break out of > the loop, so the assignment is redundant and can be removed. > > Addresses-Coverity: ("Unused value") > Signed-off-by: Colin Ian King Patch applied to wireless-drivers-next.git

Re: [PATCH] rtlwifi: remove redundant assignment to variable k

2019-05-31 Thread Joe Perches
On Fri, 2019-05-31 at 12:29 -0500, Larry Finger wrote: > On 5/31/19 9:14 AM, Colin King wrote: > > From: Colin Ian King > > > > The assignment of 0 to variable k is never read once we break out of > > the loop, so the assignment is redundant and can be removed. > > > > Addresses-Coverity: ("Unus

Re: [PATCH] rtlwifi: remove redundant assignment to variable k

2019-05-31 Thread Larry Finger
On 5/31/19 9:14 AM, Colin King wrote: From: Colin Ian King The assignment of 0 to variable k is never read once we break out of the loop, so the assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King --- drivers/net/wireless/realtek/rt

[PATCH] rtlwifi: remove redundant assignment to variable k

2019-05-31 Thread Colin King
From: Colin Ian King The assignment of 0 to variable k is never read once we break out of the loop, so the assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King --- drivers/net/wireless/realtek/rtlwifi/efuse.c | 4 +--- 1 file changed, 1