diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-debug.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-debug.h | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-debug.h b/drivers/net/wireless/iwlwifi/iwl-debug.h index 067700620e21..c60724c21db8 100644 --- a/drivers/net/wireless/iwlwifi/iwl-debug.h +++ b/drivers/net/wireless/iwlwifi/iwl-debug.h | |||
@@ -49,8 +49,27 @@ static inline void iwl_print_hex_dump(int level, void *p, u32 len) | |||
49 | print_hex_dump(KERN_DEBUG, "iwl data: ", DUMP_PREFIX_OFFSET, 16, 1, | 49 | print_hex_dump(KERN_DEBUG, "iwl data: ", DUMP_PREFIX_OFFSET, 16, 1, |
50 | p, len, 1); | 50 | p, len, 1); |
51 | } | 51 | } |
52 | #else | ||
53 | 52 | ||
53 | #ifdef CONFIG_IWLWIFI_DEBUGFS | ||
54 | struct iwl_debugfs { | ||
55 | const char *name; | ||
56 | struct dentry *dir_drv; | ||
57 | struct dentry *dir_data; | ||
58 | struct dir_data_files{ | ||
59 | struct dentry *file_sram; | ||
60 | struct dentry *file_stations; | ||
61 | struct dentry *file_rx_statistics; | ||
62 | struct dentry *file_tx_statistics; | ||
63 | } dbgfs_data_files; | ||
64 | u32 sram_offset; | ||
65 | u32 sram_len; | ||
66 | }; | ||
67 | |||
68 | int iwl_dbgfs_register(struct iwl_priv *priv, const char *name); | ||
69 | void iwl_dbgfs_unregister(struct iwl_priv *priv); | ||
70 | #endif | ||
71 | |||
72 | #else | ||
54 | static inline void IWL_DEBUG(int level, const char *fmt, ...) | 73 | static inline void IWL_DEBUG(int level, const char *fmt, ...) |
55 | { | 74 | { |
56 | } | 75 | } |
@@ -64,6 +83,16 @@ static inline void iwl_print_hex_dump(int level, void *p, u32 len) | |||
64 | 83 | ||
65 | 84 | ||
66 | 85 | ||
86 | #ifndef CONFIG_IWLWIFI_DEBUGFS | ||
87 | static inline int iwl_dbgfs_register(struct iwl_priv *priv, const char *name) | ||
88 | { | ||
89 | return 0; | ||
90 | } | ||
91 | static inline void iwl_dbgfs_unregister(struct iwl_priv *priv) | ||
92 | { | ||
93 | } | ||
94 | #endif /* CONFIG_IWLWIFI_DEBUGFS */ | ||
95 | |||
67 | /* | 96 | /* |
68 | * To use the debug system; | 97 | * To use the debug system; |
69 | * | 98 | * |