Re: [PATCH net-next] net: ethernet: mtk_eth_soc: remove unused variable 'count'

2021-03-25 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Thu, 25 Mar 2021 17:31:51 +0800 you wrote: > GCC reports the following warning with W=1: > > drivers/net/ethernet/mediatek/mtk_ppe_debugfs.c:80:9: warning: > variable 'count' set but not used [-Wunused-but-set-variable

[PATCH net-next] net: ethernet: mtk_eth_soc: remove unused variable 'count'

2021-03-25 Thread Qiheng Lin
GCC reports the following warning with W=1: drivers/net/ethernet/mediatek/mtk_ppe_debugfs.c:80:9: warning: variable 'count' set but not used [-Wunused-but-set-variable] 80 | int i, count; | ^ This variable is not used in function , this commit remove it to fix the warning.