diff options
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/mvm/fw-api-rx.h')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/fw-api-rx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/fw-api-rx.h b/drivers/net/wireless/intel/iwlwifi/mvm/fw-api-rx.h index 4c086d048097..ade170bd8683 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/fw-api-rx.h +++ b/drivers/net/wireless/intel/iwlwifi/mvm/fw-api-rx.h | |||
@@ -437,9 +437,11 @@ struct iwl_rxq_sync_notification { | |||
437 | /** | 437 | /** |
438 | * Internal message identifier | 438 | * Internal message identifier |
439 | * | 439 | * |
440 | * @IWL_MVM_RXQ_SYNC: sync RSS queues | ||
440 | * @IWL_MVM_RXQ_NOTIF_DEL_BA: notify RSS queues of delBA | 441 | * @IWL_MVM_RXQ_NOTIF_DEL_BA: notify RSS queues of delBA |
441 | */ | 442 | */ |
442 | enum iwl_mvm_rxq_notif_type { | 443 | enum iwl_mvm_rxq_notif_type { |
444 | IWL_MVM_RXQ_SYNC, | ||
443 | IWL_MVM_RXQ_NOTIF_DEL_BA, | 445 | IWL_MVM_RXQ_NOTIF_DEL_BA, |
444 | }; | 446 | }; |
445 | 447 | ||
@@ -448,10 +450,12 @@ enum iwl_mvm_rxq_notif_type { | |||
448 | * in &iwl_rxq_sync_cmd. Should be DWORD aligned. | 450 | * in &iwl_rxq_sync_cmd. Should be DWORD aligned. |
449 | * | 451 | * |
450 | * @type: value from &iwl_mvm_rxq_notif_type | 452 | * @type: value from &iwl_mvm_rxq_notif_type |
453 | * @cookie: internal cookie to identify old notifications | ||
451 | * @data: payload | 454 | * @data: payload |
452 | */ | 455 | */ |
453 | struct iwl_mvm_internal_rxq_notif { | 456 | struct iwl_mvm_internal_rxq_notif { |
454 | u32 type; | 457 | u32 type; |
458 | u32 cookie; | ||
455 | u8 data[]; | 459 | u8 data[]; |
456 | } __packed; | 460 | } __packed; |
457 | 461 | ||