Commit 9b412590 authored by Bertold Van den Bergh's avatar Bertold Van den Bergh Committed by Kalle Valo

ath: Make ath_opmode_to_string understand OCB mode

Make ath_opmode_to_string return "OCB" for NL80211_IFTYPE_OCB. Currently
it will return "UNKNOWN".
Signed-off-by: default avatarBertold Van den Bergh <bertold.vandenbergh@esat.kuleuven.be>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 53cd2fdb
......@@ -40,6 +40,8 @@ const char *ath_opmode_to_string(enum nl80211_iftype opmode)
return "P2P-CLIENT";
case NL80211_IFTYPE_P2P_GO:
return "P2P-GO";
case NL80211_IFTYPE_OCB:
return "OCB";
default:
return "UNKNOWN";
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment