diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-dev.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index cab6255210d5..1bf3e4ccc5d9 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -1175,6 +1175,8 @@ struct iwl_priv { | |||
1175 | 1175 | ||
1176 | #ifdef CONFIG_IWLWIFI_DEBUG | 1176 | #ifdef CONFIG_IWLWIFI_DEBUG |
1177 | /* debugging info */ | 1177 | /* debugging info */ |
1178 | u32 debug_level; /* per device debugging will override global | ||
1179 | iwl_debug_level if set */ | ||
1178 | u32 framecnt_to_us; | 1180 | u32 framecnt_to_us; |
1179 | atomic_t restrict_refcnt; | 1181 | atomic_t restrict_refcnt; |
1180 | bool disable_ht40; | 1182 | bool disable_ht40; |
@@ -1211,8 +1213,27 @@ static inline void iwl_txq_ctx_deactivate(struct iwl_priv *priv, int txq_id) | |||
1211 | 1213 | ||
1212 | #ifdef CONFIG_IWLWIFI_DEBUG | 1214 | #ifdef CONFIG_IWLWIFI_DEBUG |
1213 | const char *iwl_get_tx_fail_reason(u32 status); | 1215 | const char *iwl_get_tx_fail_reason(u32 status); |
1216 | /* | ||
1217 | * iwl_get_debug_level: Return active debug level for device | ||
1218 | * | ||
1219 | * Using sysfs it is possible to set per device debug level. This debug | ||
1220 | * level will be used if set, otherwise the global debug level which can be | ||
1221 | * set via module parameter is used. | ||
1222 | */ | ||
1223 | static inline u32 iwl_get_debug_level(struct iwl_priv *priv) | ||
1224 | { | ||
1225 | if (priv->debug_level) | ||
1226 | return priv->debug_level; | ||
1227 | else | ||
1228 | return iwl_debug_level; | ||
1229 | } | ||
1214 | #else | 1230 | #else |
1215 | static inline const char *iwl_get_tx_fail_reason(u32 status) { return ""; } | 1231 | static inline const char *iwl_get_tx_fail_reason(u32 status) { return ""; } |
1232 | |||
1233 | static inline u32 iwl_get_debug_level(struct iwl_priv *priv) | ||
1234 | { | ||
1235 | return iwl_debug_level; | ||
1236 | } | ||
1216 | #endif | 1237 | #endif |
1217 | 1238 | ||
1218 | 1239 | ||