Re: [PATCH] wifi: ath10k: fix the stack frame size warning in ath10k_hw_scan

2024-09-28 Thread Kalle Valo
Miaoqing Pan wrote: > Fix the following W=1 kernel build warning: > > drivers/net/wireless/ath/ath10k/mac.c: In function ‘ath10k_hw_scan’: > drivers/net/wireless/ath/ath10k/mac.c:6468:1: warning: the frame size of 1064 > bytes is larger than 1024 bytes [-Wframe-larger-than=] > > Compile tested

Re: [PATCH] wifi: ath10k: fix the stack frame size warning in ath10k_hw_scan

2024-09-04 Thread Jeff Johnson
On 8/29/2024 6:56 PM, Miaoqing Pan wrote: > Fix the following W=1 kernel build warning: > > drivers/net/wireless/ath/ath10k/mac.c: In function ‘ath10k_hw_scan’: > drivers/net/wireless/ath/ath10k/mac.c:6468:1: warning: the frame size of 1064 > bytes is larger than 1024 bytes [-Wframe-larger-than=]

[PATCH] wifi: ath10k: fix the stack frame size warning in ath10k_hw_scan

2024-08-29 Thread Miaoqing Pan
Fix the following W=1 kernel build warning: drivers/net/wireless/ath/ath10k/mac.c: In function ‘ath10k_hw_scan’: drivers/net/wireless/ath/ath10k/mac.c:6468:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] Compile tested only. Signed-off-by: Miaoqing Pan