diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2016-10-16 23:59:06 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2016-11-15 17:55:37 +0300 |
commit | b40ded2ad75cc251e7ce4ae0db7098e5a0157200 (patch) | |
tree | eefa2fba971e80e419cec7039dead72c7bc5df7d /drivers/net/wireless/ath/ath.h | |
parent | fc383ffdb91a393086daf56c3d48a545e1cbd6e4 (diff) | |
download | linux-b40ded2ad75cc251e7ce4ae0db7098e5a0157200.tar.xz |
ath9k: add a helper to get the string representation of ath_bus_type
This can be used when the ath_bus_type has to be presented in a log
message or firmware filename.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath.h')
-rw-r--r-- | drivers/net/wireless/ath/ath.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h index da7a7c8dafb2..f3f2784f6ebd 100644 --- a/drivers/net/wireless/ath/ath.h +++ b/drivers/net/wireless/ath/ath.h @@ -327,4 +327,10 @@ static inline const char *ath_opmode_to_string(enum nl80211_iftype opmode) } #endif +extern const char *ath_bus_type_strings[]; +static inline const char *ath_bus_type_to_string(enum ath_bus_type bustype) +{ + return ath_bus_type_strings[bustype]; +} + #endif /* ATH_H */ |