diff options
author | Golan Ben-Ami | 2016-05-19 06:46:20 +0200 |
---|---|---|
committer | Luca Coelho | 2016-07-06 01:07:48 +0200 |
commit | 9c07e9aafcbe4b2a98c18d9b0ee28c84d749ea84 (patch) | |
tree | 6d662d19ed382f5745134cf65ec5a0cd9bf6afe7 | |
parent | iwlwifi: add dump of RFH (diff) | |
download | kernel-qcow2-linux-9c07e9aafcbe4b2a98c18d9b0ee28c84d749ea84.tar.gz kernel-qcow2-linux-9c07e9aafcbe4b2a98c18d9b0ee28c84d749ea84.tar.xz kernel-qcow2-linux-9c07e9aafcbe4b2a98c18d9b0ee28c84d749ea84.zip |
iwlwifi: Reserve iwl_fw_error_dump_type enum
Reserve a single iwl_fw_error_dump_type enum for external
code utilities.
Signed-off-by: Golan Ben-Ami <golan.ben.ami@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/iwl-fw-error-dump.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-fw-error-dump.h b/drivers/net/wireless/intel/iwlwifi/iwl-fw-error-dump.h index 09b7ea28f4a0..420c31dab263 100644 --- a/drivers/net/wireless/intel/iwlwifi/iwl-fw-error-dump.h +++ b/drivers/net/wireless/intel/iwlwifi/iwl-fw-error-dump.h @@ -89,6 +89,9 @@ * @IWL_FW_ERROR_PAGING: UMAC's image memory segments which were * paged to the DRAM. * @IWL_FW_ERROR_DUMP_RADIO_REG: Dump the radio registers. + * @IWL_FW_ERROR_DUMP_EXTERNAL: used only by external code utilities, and + * for that reason is not in use in any other place in the Linux Wi-Fi + * stack. */ enum iwl_fw_error_dump_type { /* 0 is deprecated */ @@ -106,6 +109,7 @@ enum iwl_fw_error_dump_type { IWL_FW_ERROR_DUMP_PAGING = 12, IWL_FW_ERROR_DUMP_RADIO_REG = 13, IWL_FW_ERROR_DUMP_INTERNAL_TXF = 14, + IWL_FW_ERROR_DUMP_EXTERNAL = 15, /* Do not move */ IWL_FW_ERROR_DUMP_MAX, }; |