]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
iwlwifi: mvm: add documentation for enum iwl_debug_cmds
authorJohannes Berg <johannes.berg@intel.com>
Thu, 4 May 2017 08:00:03 +0000 (10:00 +0200)
committerLuca Coelho <luciano.coelho@intel.com>
Fri, 23 Jun 2017 09:01:02 +0000 (12:01 +0300)
Add kernel-doc documentation for enum iwl_debug_cmds, linking the
structures used by the commands.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h

index dc613b60491442a81c9c4d04b49b2a43c5d1e568..224d10b1b07694666c820a846d92d9e0e8c2f3c9 100644 (file)
@@ -554,9 +554,26 @@ enum iwl_regulatory_and_nvm_subcmd_ids {
        NVM_GET_INFO = 0x2,
 };
 
+/**
+ * enum iwl_debug_cmds - debug commands
+ */
 enum iwl_debug_cmds {
+       /**
+        * @LMAC_RD_WR:
+        * LMAC memory read/write, using &struct iwl_dbg_mem_access_cmd and
+        * &struct iwl_dbg_mem_access_rsp
+        */
        LMAC_RD_WR = 0x0,
+       /**
+        * @UMAC_RD_WR:
+        * UMAC memory read/write, using &struct iwl_dbg_mem_access_cmd and
+        * &struct iwl_dbg_mem_access_rsp
+        */
        UMAC_RD_WR = 0x1,
+       /**
+        * @MFU_ASSERT_DUMP_NTF:
+        * &struct iwl_mfu_assert_dump_notif
+        */
        MFU_ASSERT_DUMP_NTF = 0xFE,
 };