Re: [PATCH v2] ath10k: support for multicast rate control

2018-05-09 Thread pradeepc
On 2018-05-09 07:31, Ben Greear wrote: On 05/08/2018 11:57 PM, Sebastian Gottschall wrote: Am 09.05.2018 um 08:15 schrieb Sven Eckelmann: On Montag, 7. Mai 2018 18:34:51 CEST Pradeep Kumar Chitrapu wrote: Issues wmi command to firmwre when multicast rate change is received with the new BSS_C

Re: [PATCH v2] ath10k: support for multicast rate control

2018-05-09 Thread Ben Greear
On 05/08/2018 11:57 PM, Sebastian Gottschall wrote: Am 09.05.2018 um 08:15 schrieb Sven Eckelmann: On Montag, 7. Mai 2018 18:34:51 CEST Pradeep Kumar Chitrapu wrote: Issues wmi command to firmwre when multicast rate change is received with the new BSS_CHANGED_MCAST_RATE flag. Also fixes the

Re: [PATCH 2/2] ath10k: DFS Host Confirmation

2018-05-09 Thread Sriram R
On 2018-05-01 01:20, Peter Oh wrote: On 04/30/2018 10:45 AM, Sriram R wrote: In the 10.4-3.6 firmware branch there's a new DFS Host confirmation feature which is advertised using WMI_SERVICE_HOST_DFS_CHECK_SUPPORT flag. This new features enables the ath10k host to send information to the firm

Re: [PATCH] ath10k: Replace bit shifts with the BIT() macro for rx desc bits

2018-05-09 Thread Govind Singh
On 2018-05-09 13:10, Marcus Folkesson wrote: Hello Govind, On Wed, May 09, 2018 at 10:18:04AM +0530, Govind Singh wrote: Use the BIT() macro from 'linux/bitops.h' to define the rx desc bit flags to have consistency with new definitions. Signed-off-by: Govind Singh --- drivers/net/wireless/at

[PATCH v2] ath10k: Replace bit shifts with the BIT() macro for rx desc bits

2018-05-09 Thread Govind Singh
Use the BIT() macro from 'linux/bitops.h' to define the rx desc bit flags to have consistency with new definitions. Signed-off-by: Govind Singh --- drivers/net/wireless/ath/ath10k/rx_desc.h | 136 +++--- 1 file changed, 69 insertions(+), 67 deletions(-) diff --git a/drivers/net/

[PATCH] ath10k: hw: make consistent usage of ATH10K_FW_DIR in paths

2018-05-09 Thread Marcus Folkesson
Signed-off-by: Marcus Folkesson --- drivers/net/wireless/ath/ath10k/hw.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/hw.h b/drivers/net/wireless/ath/ath10k/hw.h index b8bdabe73073..23467e9fefeb 100644 --- a/drivers/net/wireless/ath/ath1

Re: [PATCH] ath10k: Replace bit shifts with the BIT() macro for rx desc bits

2018-05-09 Thread Marcus Folkesson
Hello Govind, On Wed, May 09, 2018 at 10:18:04AM +0530, Govind Singh wrote: > Use the BIT() macro from 'linux/bitops.h' to define the rx desc > bit flags to have consistency with new definitions. > > Signed-off-by: Govind Singh > --- > drivers/net/wireless/ath/ath10k/rx_desc.h | 134 +++