mirror of https://gitee.com/openkylin/linux.git
ath6kl: trivial cleanup on interface type selection
a minor cleanup in assigning the driver specific network type based on interface type. Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
2c07cf4461
commit
3814264481
|
@ -365,17 +365,13 @@ static int ath6kl_nliftype_to_drv_iftype(enum nl80211_iftype type, u8 *nw_type)
|
||||||
{
|
{
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case NL80211_IFTYPE_STATION:
|
case NL80211_IFTYPE_STATION:
|
||||||
|
case NL80211_IFTYPE_P2P_CLIENT:
|
||||||
*nw_type = INFRA_NETWORK;
|
*nw_type = INFRA_NETWORK;
|
||||||
break;
|
break;
|
||||||
case NL80211_IFTYPE_ADHOC:
|
case NL80211_IFTYPE_ADHOC:
|
||||||
*nw_type = ADHOC_NETWORK;
|
*nw_type = ADHOC_NETWORK;
|
||||||
break;
|
break;
|
||||||
case NL80211_IFTYPE_AP:
|
case NL80211_IFTYPE_AP:
|
||||||
*nw_type = AP_NETWORK;
|
|
||||||
break;
|
|
||||||
case NL80211_IFTYPE_P2P_CLIENT:
|
|
||||||
*nw_type = INFRA_NETWORK;
|
|
||||||
break;
|
|
||||||
case NL80211_IFTYPE_P2P_GO:
|
case NL80211_IFTYPE_P2P_GO:
|
||||||
*nw_type = AP_NETWORK;
|
*nw_type = AP_NETWORK;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue