Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Bertold Van den Bergh <bertold.vandenbergh@esat.kuleuven.be>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>

authored by

Bertold Van den Bergh and committed by
Kalle Valo
9b412590 53cd2fdb

+2
+2
drivers/net/wireless/ath/debug.c
··· 40 40 return "P2P-CLIENT"; 41 41 case NL80211_IFTYPE_P2P_GO: 42 42 return "P2P-GO"; 43 + case NL80211_IFTYPE_OCB: 44 + return "OCB"; 43 45 default: 44 46 return "UNKNOWN"; 45 47 }