All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arend Van Spriel <arend.vanspriel@broadcom.com>
To: c_traja@qti.qualcomm.com, linux-wireless@vger.kernel.org
Cc: johannes@sipsolutions.net, ath10k@lists.infradead.org
Subject: Re: [PATCHv2 0/4] cfg80211: mac80211: BTCOEX feature support
Date: Sat, 25 Feb 2017 15:41:39 +0100	[thread overview]
Message-ID: <d8f813bb-fd25-9957-360e-7aa4cd117822@broadcom.com> (raw)
In-Reply-To: <1488029873-14600-1-git-send-email-c_traja@qti.qualcomm.com>

On 25-2-2017 14:37, c_traja@qti.qualcomm.com wrote:
> From: Tamizh chelvam <c_traja@qti.qualcomm.com>
> 
> This patchset add support for BTCOEX feature to enable/disable and
> modifying btcoex priority value via nl80211
> 
> Tamizh chelvam (4):
>   ath10k: Add support to enable or disable btcoex via nl80211
>   ath10k: Add support to update btcoex priority value via nl80211
>   dt: bindings: add new dt entry for BTCOEX feature in qcom,ath10k.txt
>   ath10k: Add support to read btcoex related data from DT

This cover letter does not seem to reflect the other patches that were
sent to the wireless list as those are about cfg80211/mac80211; not ath10k?

Regards,
Arend

> v2 :
>   * Introduced NL80211_CMD_SET_BTCOEX to enable/disable btcoex and
>     to set/modify btcoex_priority.
>   * Added bool variable in wiphy structure to advertise btcoex_priority
>     feature and removed BITMAP calculation for btcoex_priority value.
>  
>  .../bindings/net/wireless/qcom,ath10k.txt          |    4 +
>  drivers/net/wireless/ath/ath10k/core.c             |   44 ++++++++-
>  drivers/net/wireless/ath/ath10k/core.h             |    9 ++
>  drivers/net/wireless/ath/ath10k/debug.c            |   40 ++-------
>  drivers/net/wireless/ath/ath10k/mac.c              |   94 +++++++++++++++++++-
>  drivers/net/wireless/ath/ath10k/mac.h              |    1 +
>  drivers/net/wireless/ath/ath10k/wmi-ops.h          |   19 ++++
>  drivers/net/wireless/ath/ath10k/wmi.c              |   20 +++++
>  drivers/net/wireless/ath/ath10k/wmi.h              |   20 +++++
>  9 files changed, 215 insertions(+), 36 deletions(-)
> 

WARNING: multiple messages have this Message-ID (diff)
From: Arend Van Spriel <arend.vanspriel@broadcom.com>
To: c_traja@qti.qualcomm.com, linux-wireless@vger.kernel.org
Cc: johannes@sipsolutions.net, ath10k@lists.infradead.org
Subject: Re: [PATCHv2 0/4] cfg80211: mac80211: BTCOEX feature support
Date: Sat, 25 Feb 2017 15:41:39 +0100	[thread overview]
Message-ID: <d8f813bb-fd25-9957-360e-7aa4cd117822@broadcom.com> (raw)
In-Reply-To: <1488029873-14600-1-git-send-email-c_traja@qti.qualcomm.com>

On 25-2-2017 14:37, c_traja@qti.qualcomm.com wrote:
> From: Tamizh chelvam <c_traja@qti.qualcomm.com>
> 
> This patchset add support for BTCOEX feature to enable/disable and
> modifying btcoex priority value via nl80211
> 
> Tamizh chelvam (4):
>   ath10k: Add support to enable or disable btcoex via nl80211
>   ath10k: Add support to update btcoex priority value via nl80211
>   dt: bindings: add new dt entry for BTCOEX feature in qcom,ath10k.txt
>   ath10k: Add support to read btcoex related data from DT

This cover letter does not seem to reflect the other patches that were
sent to the wireless list as those are about cfg80211/mac80211; not ath10k?

Regards,
Arend

> v2 :
>   * Introduced NL80211_CMD_SET_BTCOEX to enable/disable btcoex and
>     to set/modify btcoex_priority.
>   * Added bool variable in wiphy structure to advertise btcoex_priority
>     feature and removed BITMAP calculation for btcoex_priority value.
>  
>  .../bindings/net/wireless/qcom,ath10k.txt          |    4 +
>  drivers/net/wireless/ath/ath10k/core.c             |   44 ++++++++-
>  drivers/net/wireless/ath/ath10k/core.h             |    9 ++
>  drivers/net/wireless/ath/ath10k/debug.c            |   40 ++-------
>  drivers/net/wireless/ath/ath10k/mac.c              |   94 +++++++++++++++++++-
>  drivers/net/wireless/ath/ath10k/mac.h              |    1 +
>  drivers/net/wireless/ath/ath10k/wmi-ops.h          |   19 ++++
>  drivers/net/wireless/ath/ath10k/wmi.c              |   20 +++++
>  drivers/net/wireless/ath/ath10k/wmi.h              |   20 +++++
>  9 files changed, 215 insertions(+), 36 deletions(-)
> 

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

  parent reply	other threads:[~2017-02-25 14:41 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-25 13:37 [PATCHv2 0/4] cfg80211: mac80211: BTCOEX feature support c_traja
2017-02-25 13:37 ` c_traja
2017-02-25 13:37 ` [PATCHv2 1/4] cfg80211: Add support to enable or disable btcoex c_traja
2017-02-25 13:37   ` c_traja
2017-02-25 14:48   ` kbuild test robot
2017-02-25 14:48     ` kbuild test robot
2017-02-25 14:48   ` kbuild test robot
2017-02-25 14:48     ` kbuild test robot
2017-03-02  8:45   ` Johannes Berg
2017-03-02  8:45     ` Johannes Berg
2017-03-02 11:49     ` Raja, Tamizh Chelvam
2017-03-02 11:49       ` Raja, Tamizh Chelvam
2017-02-25 13:37 ` [PATCHv2 2/4] mac80211: " c_traja
2017-02-25 13:37   ` c_traja
2017-02-25 13:37 ` [PATCHv2 3/4] cfg80211: Add Support set btcoex priority value c_traja
2017-02-25 13:37   ` c_traja
2017-02-25 15:12   ` kbuild test robot
2017-02-25 15:12     ` kbuild test robot
2017-03-02  8:50   ` Johannes Berg
2017-03-02  8:50     ` Johannes Berg
2017-03-02 11:48     ` Raja, Tamizh Chelvam
2017-03-02 11:48       ` Raja, Tamizh Chelvam
2017-03-02 12:15       ` Johannes Berg
2017-03-02 12:15         ` Johannes Berg
2017-03-02 13:08         ` Raja, Tamizh Chelvam
2017-03-02 13:08           ` Raja, Tamizh Chelvam
2017-03-02 13:43           ` Johannes Berg
2017-03-02 13:43             ` Johannes Berg
2017-03-02  8:51   ` Johannes Berg
2017-03-02  8:51     ` Johannes Berg
2017-02-25 13:37 ` [PATCHv2 4/4] mac80211: Add support to set/update " c_traja
2017-02-25 13:37   ` c_traja
2017-02-25 14:41 ` Arend Van Spriel [this message]
2017-02-25 14:41   ` [PATCHv2 0/4] cfg80211: mac80211: BTCOEX feature support Arend Van Spriel
2017-02-27 10:33   ` Raja, Tamizh Chelvam
2017-02-27 10:33     ` Raja, Tamizh Chelvam

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d8f813bb-fd25-9957-360e-7aa4cd117822@broadcom.com \
    --to=arend.vanspriel@broadcom.com \
    --cc=ath10k@lists.infradead.org \
    --cc=c_traja@qti.qualcomm.com \
    --cc=johannes@sipsolutions.net \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.