2012-08-24 14:23:40

by Mohammed Shafi Shajakhan

[permalink] [raw]
Subject: [RFC] ath6kl: trivial cleanup

From: Mohammed Shafi Shajakhan <[email protected]>

a minor cleanup in assigning the driver specific network type
based on interface type.

Signed-off-by: Mohammed Shafi Shajakhan <[email protected]>
---
drivers/net/wireless/ath/ath6kl/cfg80211.c | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/drivers/net/wireless/ath/ath6kl/cfg80211.c b/drivers/net/wireless/ath/ath6kl/cfg80211.c
index 86aeef4..a971d54 100644
--- a/drivers/net/wireless/ath/ath6kl/cfg80211.c
+++ b/drivers/net/wireless/ath/ath6kl/cfg80211.c
@@ -369,17 +369,13 @@ static int ath6kl_nliftype_to_drv_iftype(enum nl80211_iftype type, u8 *nw_type)
{
switch (type) {
case NL80211_IFTYPE_STATION:
+ case NL80211_IFTYPE_P2P_CLIENT:
*nw_type = INFRA_NETWORK;
break;
case NL80211_IFTYPE_ADHOC:
*nw_type = ADHOC_NETWORK;
break;
case NL80211_IFTYPE_AP:
- *nw_type = AP_NETWORK;
- break;
- case NL80211_IFTYPE_P2P_CLIENT:
- *nw_type = INFRA_NETWORK;
- break;
case NL80211_IFTYPE_P2P_GO:
*nw_type = AP_NETWORK;
break;
--
1.7.0.4



2012-08-27 14:16:51

by Kalle Valo

[permalink] [raw]
Subject: Re: [RFC] ath6kl: trivial cleanup

On 08/24/2012 05:23 PM, Mohammed Shafi Shajakhan wrote:
> From: Mohammed Shafi Shajakhan <[email protected]>
>
> a minor cleanup in assigning the driver specific network type
> based on interface type.
>
> Signed-off-by: Mohammed Shafi Shajakhan <[email protected]>

Thanks, applied to ath6kl.git. But I changed the title to:

ath6kl: trivial cleanup on interface type selection

Kalle

2012-08-27 14:19:21

by Mohammed Shafi Shajakhan

[permalink] [raw]
Subject: Re: [RFC] ath6kl: trivial cleanup

Hi Kalle,

On Monday 27 August 2012 07:46 PM, Kalle Valo wrote:
> On 08/24/2012 05:23 PM, Mohammed Shafi Shajakhan wrote:
>> From: Mohammed Shafi Shajakhan <[email protected]>
>>
>> a minor cleanup in assigning the driver specific network type
>> based on interface type.
>>
>> Signed-off-by: Mohammed Shafi Shajakhan <[email protected]>
>
> Thanks, applied to ath6kl.git. But I changed the title to:
>
> ath6kl: trivial cleanup on interface type selection

thanks for the review!

>
> Kalle
>


--
thanks,
shafi