[kvalo-ath:master] BUILD SUCCESS 584e56beffc20c9f6f3dd624137b217558b07cfa

2023-03-22 Thread kernel test robot
randconfig-r002-20230322 gcc arc randconfig-r023-20230322 gcc arc randconfig-r024-20230322 gcc arc randconfig-r035-20230322 gcc arc randconfig-r043-20230322 gcc arm allmodconfig gcc arm

[kvalo-ath:ath-next] BUILD SUCCESS 72d17c3e86d0f7fad8f3ae77d87d00b7b6788a8e

2023-03-22 Thread kernel test robot
configs may be tested in the coming days. tested configs: alphaallyesconfig gcc alphabuildonly-randconfig-r006-20230322 gcc alpha defconfig gcc arc allyesconfig gcc arc

[kvalo-ath:ath-qca] BUILD SUCCESS 9523618353a973bace2761ee0e270d0c466adc0e

2023-03-22 Thread kernel test robot
hsdk_defconfig gcc arc randconfig-r043-20230322 gcc arc tb10x_defconfig gcc arm allmodconfig gcc arm allyesconfig gcc arm defconfig gcc arm

[PATCH] ath10k: remove unused ath10k_get_ring_byte function

2023-03-22 Thread Tom Rix
clang with W=1 reports drivers/net/wireless/ath/ath10k/ce.c:88:1: error: unused function 'ath10k_get_ring_byte' [-Werror,-Wunused-function] ath10k_get_ring_byte(unsigned int offset, ^ This function is not used so remove it. Signed-off-by: Tom Rix --- drivers/net/wireless/ath/ath10k/ce.c | 7

Re: [PATCH] ath10k: remove unused ath10k_get_ring_byte function

2023-03-22 Thread Simon Horman
On Wed, Mar 22, 2023 at 08:28:55AM -0400, Tom Rix wrote: > clang with W=1 reports > drivers/net/wireless/ath/ath10k/ce.c:88:1: error: > unused function 'ath10k_get_ring_byte' [-Werror,-Wunused-function] > ath10k_get_ring_byte(unsigned int offset, > ^ > This function is not used so remove it. >