Re: ath10k: tpc_stats(_final) odd twicepowers and 160Mhz not supported

2018-07-09 Thread Sven Eckelmann
On Donnerstag, 28. Juni 2018 12:05:18 CEST Sven Eckelmann wrote: > Hi, > > I have some small question regarding the debugging functionality introduced > by > commit bc64d05220f3 ("ath10k: debugfs support to get final TPC stats for 10.4 > variants") [1] and commit 295426669cd6 ("ath10k: implemen

[PATCH] ath10k: remove redundant pointers 'dev' and 'noa'

2018-07-09 Thread Colin King
From: Colin Ian King Pointers dev and noa are being assigned but are never used hence they are redundant and can be removed. Cleans up clang warnings: warning: variable 'dev' set but not used [-Wunused-but-set-variable] warning: variable 'noa' set but not used [-Wunused-but-set-variable] Signed