mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	Let's switch to 5.10 now that mac80211 has been updated. Runtime-tested on ipq806x (Netgear R7800). Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			428 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			428 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
--- a/ath10k-5.10/htt.h
 | 
						|
+++ b/ath10k-5.10/htt.h
 | 
						|
@@ -237,7 +237,11 @@ enum htt_rx_ring_flags {
 | 
						|
 };
 | 
						|
 
 | 
						|
 #define HTT_RX_RING_SIZE_MIN 128
 | 
						|
+#ifndef CONFIG_ATH10K_SMALLBUFFERS
 | 
						|
 #define HTT_RX_RING_SIZE_MAX 2048
 | 
						|
+#else
 | 
						|
+#define HTT_RX_RING_SIZE_MAX 512
 | 
						|
+#endif
 | 
						|
 #define HTT_RX_RING_SIZE HTT_RX_RING_SIZE_MAX
 | 
						|
 #define HTT_RX_RING_FILL_LEVEL (((HTT_RX_RING_SIZE) / 2) - 1)
 | 
						|
 #define HTT_RX_RING_FILL_LEVEL_DUAL_MAC (HTT_RX_RING_SIZE - 1)
 |