2010-09-30 21:29:38

by Bill Jordan

[permalink] [raw]
Subject: [PATCH] ath9k: Enable WDS for the ath9k

As requested, I'm breaking up my previous patch.

This patch enables WDS for the ath9k driver.

For WDS to fully work, patches to mac80211 are also needed
(submitted separately).

Signed-off-by: Bill Jordan <[email protected]>
---
drivers/net/wireless/ath/ath9k/init.c | 1 +
drivers/net/wireless/ath/ath9k/main.c | 3 +++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/drivers/net/wireless/ath/ath9k/init.c
b/drivers/net/wireless/ath/ath9k/init.c
index de33938..c2792c9 100644
--- a/drivers/net/wireless/ath/ath9k/init.c
+++ b/drivers/net/wireless/ath/ath9k/init.c
@@ -639,6 +639,7 @@ void ath9k_set_hw_capab(struct ath_softc *sc,
struct ieee80211_hw *hw)

hw->wiphy->interface_modes =
BIT(NL80211_IFTYPE_AP) |
+ BIT(NL80211_IFTYPE_WDS) |
BIT(NL80211_IFTYPE_STATION) |
BIT(NL80211_IFTYPE_ADHOC) |
BIT(NL80211_IFTYPE_MESH_POINT);
diff --git a/drivers/net/wireless/ath/ath9k/main.c
b/drivers/net/wireless/ath/ath9k/main.c
index a133878..d67067f 100644
--- a/drivers/net/wireless/ath/ath9k/main.c
+++ b/drivers/net/wireless/ath/ath9k/main.c
@@ -1384,6 +1384,9 @@ static int ath9k_add_interface(struct ieee80211_hw *hw,
case NL80211_IFTYPE_STATION:
ic_opmode = NL80211_IFTYPE_STATION;
break;
+ case NL80211_IFTYPE_WDS:
+ ic_opmode = NL80211_IFTYPE_WDS;
+ break;
case NL80211_IFTYPE_ADHOC:
case NL80211_IFTYPE_AP:
case NL80211_IFTYPE_MESH_POINT:
--
1.7.2.3


2010-09-30 21:43:39

by Luis R. Rodriguez

[permalink] [raw]
Subject: Re: [PATCH] ath9k: Enable WDS for the ath9k

On Thu, Sep 30, 2010 at 02:29:37PM -0700, Bill Jordan wrote:
> As requested, I'm breaking up my previous patch.

Please resubmit but remove this verbose stuff above.
>
> This patch enables WDS for the ath9k driver.
>
> For WDS to fully work, patches to mac80211 are also needed
> (submitted separately).

and this too.

> Signed-off-by: Bill Jordan <[email protected]>
> ---

If you want to add verbose messages that should not
be part of the commit log entry add them here after
the three dashes ("---").

Luis

> drivers/net/wireless/ath/ath9k/init.c | 1 +
> drivers/net/wireless/ath/ath9k/main.c | 3 +++
> 2 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/net/wireless/ath/ath9k/init.c
> b/drivers/net/wireless/ath/ath9k/init.c
> index de33938..c2792c9 100644
> --- a/drivers/net/wireless/ath/ath9k/init.c
> +++ b/drivers/net/wireless/ath/ath9k/init.c
> @@ -639,6 +639,7 @@ void ath9k_set_hw_capab(struct ath_softc *sc,
> struct ieee80211_hw *hw)
>
> hw->wiphy->interface_modes =
> BIT(NL80211_IFTYPE_AP) |
> + BIT(NL80211_IFTYPE_WDS) |
> BIT(NL80211_IFTYPE_STATION) |
> BIT(NL80211_IFTYPE_ADHOC) |
> BIT(NL80211_IFTYPE_MESH_POINT);
> diff --git a/drivers/net/wireless/ath/ath9k/main.c
> b/drivers/net/wireless/ath/ath9k/main.c
> index a133878..d67067f 100644
> --- a/drivers/net/wireless/ath/ath9k/main.c
> +++ b/drivers/net/wireless/ath/ath9k/main.c
> @@ -1384,6 +1384,9 @@ static int ath9k_add_interface(struct ieee80211_hw *hw,
> case NL80211_IFTYPE_STATION:
> ic_opmode = NL80211_IFTYPE_STATION;
> break;
> + case NL80211_IFTYPE_WDS:
> + ic_opmode = NL80211_IFTYPE_WDS;
> + break;
> case NL80211_IFTYPE_ADHOC:
> case NL80211_IFTYPE_AP:
> case NL80211_IFTYPE_MESH_POINT:
> --
> 1.7.2.3