Re: [PATCH v1 01/15] dt-bindings: add pwrseq device tree bindings

2023-03-09 Thread Srinivas Kandagatla
On 02/11/2021 15:26, Dmitry Baryshkov wrote: On 28/10/2021 00:53, Rob Herring wrote: On Tue, Oct 26, 2021 at 9:42 AM Dmitry Baryshkov wrote: On 26/10/2021 15:53, Rob Herring wrote: On Wed, Oct 06, 2021 at 06:53:53AM +0300, Dmitry Baryshkov wrote: Add device tree bindings for the new powe

[PATCH 3/3] ath10k: fix typo in addr calculation

2017-01-23 Thread Srinivas Kandagatla
CORE_CTRL_ADDRESS is offset in register address space, it does not make sense to OR it to derive the final address. It looks like its a typo, so fix it. Signed-off-by: Srinivas Kandagatla --- drivers/net/wireless/ath/ath10k/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 1/3] ath10k: remove multiple defines of DIAG_TRANSFER_LIMIT

2017-01-23 Thread Srinivas Kandagatla
DIAG_TRANSFER_LIMIT is redefined with same value and comments just below this entry, remove this duplicate entry. Signed-off-by: Srinivas Kandagatla --- drivers/net/wireless/ath/ath10k/pci.h | 5 - 1 file changed, 5 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/pci.h b/drivers

[PATCH 2/3] ath10k: use dma_zalloc_coherent()

2017-01-23 Thread Srinivas Kandagatla
use dma_zalloc_coherent() instead of dma_alloc_coherent and memset(). Signed-off-by: Srinivas Kandagatla --- drivers/net/wireless/ath/ath10k/ce.c | 9 + drivers/net/wireless/ath/ath10k/pci.c | 3 +-- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/drivers/net/wireless