 e537ebbc23
			
		
	
	e537ebbc23
	
	
	
		
			
			ath10k-ct now offers 6.2 and 6.4 versions, so lets update to use 6.2 so we can get rid of the API update patch as well as NVMEM as that is already present in the newer driver. Ben merged the debug compilation patch so we can remove that one as well. Update patches to point to 6.2 version and refresh them. Signed-off-by: Robert Marko <robimarko@gmail.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			426 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			426 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/ath10k-6.2/htt.h
 | |
| +++ b/ath10k-6.2/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)
 |