|
@@ -110,11 +110,12 @@ static inline void iwl_dbgfs_unregister(struct iwl_priv *priv)
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
|
|
|
|
-#define IWL_DL_INFO (1 << 0)
|
|
|
|
-#define IWL_DL_MAC80211 (1 << 1)
|
|
|
|
-#define IWL_DL_HOST_COMMAND (1 << 2)
|
|
|
|
-#define IWL_DL_STATE (1 << 3)
|
|
|
|
|
|
+#define IWL_DL_INFO (1 << 0)
|
|
|
|
+#define IWL_DL_MAC80211 (1 << 1)
|
|
|
|
+#define IWL_DL_HCMD (1 << 2)
|
|
|
|
+#define IWL_DL_STATE (1 << 3)
|
|
#define IWL_DL_MACDUMP (1 << 4)
|
|
#define IWL_DL_MACDUMP (1 << 4)
|
|
|
|
+#define IWL_DL_HCMD_DUMP (1 << 5)
|
|
#define IWL_DL_RADIO (1 << 7)
|
|
#define IWL_DL_RADIO (1 << 7)
|
|
#define IWL_DL_POWER (1 << 8)
|
|
#define IWL_DL_POWER (1 << 8)
|
|
#define IWL_DL_TEMP (1 << 9)
|
|
#define IWL_DL_TEMP (1 << 9)
|
|
@@ -162,7 +163,8 @@ static inline void iwl_dbgfs_unregister(struct iwl_priv *priv)
|
|
#define IWL_DEBUG_ISR(f, a...) IWL_DEBUG(IWL_DL_ISR, f, ## a)
|
|
#define IWL_DEBUG_ISR(f, a...) IWL_DEBUG(IWL_DL_ISR, f, ## a)
|
|
#define IWL_DEBUG_LED(f, a...) IWL_DEBUG(IWL_DL_LED, f, ## a)
|
|
#define IWL_DEBUG_LED(f, a...) IWL_DEBUG(IWL_DL_LED, f, ## a)
|
|
#define IWL_DEBUG_WEP(f, a...) IWL_DEBUG(IWL_DL_WEP, f, ## a)
|
|
#define IWL_DEBUG_WEP(f, a...) IWL_DEBUG(IWL_DL_WEP, f, ## a)
|
|
-#define IWL_DEBUG_HC(f, a...) IWL_DEBUG(IWL_DL_HOST_COMMAND, f, ## a)
|
|
|
|
|
|
+#define IWL_DEBUG_HC(f, a...) IWL_DEBUG(IWL_DL_HCMD, f, ## a)
|
|
|
|
+#define IWL_DEBUG_HC_DUMP(f, a...) IWL_DEBUG(IWL_DL_HCMD_DUMP, f, ## a)
|
|
#define IWL_DEBUG_CALIB(f, a...) IWL_DEBUG(IWL_DL_CALIB, f, ## a)
|
|
#define IWL_DEBUG_CALIB(f, a...) IWL_DEBUG(IWL_DL_CALIB, f, ## a)
|
|
#define IWL_DEBUG_FW(f, a...) IWL_DEBUG(IWL_DL_FW, f, ## a)
|
|
#define IWL_DEBUG_FW(f, a...) IWL_DEBUG(IWL_DL_FW, f, ## a)
|
|
#define IWL_DEBUG_RF_KILL(f, a...) IWL_DEBUG(IWL_DL_RF_KILL, f, ## a)
|
|
#define IWL_DEBUG_RF_KILL(f, a...) IWL_DEBUG(IWL_DL_RF_KILL, f, ## a)
|