diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-fh.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-fh.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-fh.h b/drivers/net/wireless/iwlwifi/iwl-fh.h index 97e2cf41258d..153754277e07 100644 --- a/drivers/net/wireless/iwlwifi/iwl-fh.h +++ b/drivers/net/wireless/iwlwifi/iwl-fh.h | |||
@@ -403,5 +403,21 @@ | |||
403 | #define TFD_QUEUE_SIZE_BC_DUP (64) | 403 | #define TFD_QUEUE_SIZE_BC_DUP (64) |
404 | #define TFD_QUEUE_BC_SIZE (TFD_QUEUE_SIZE_MAX + TFD_QUEUE_SIZE_BC_DUP) | 404 | #define TFD_QUEUE_BC_SIZE (TFD_QUEUE_SIZE_MAX + TFD_QUEUE_SIZE_BC_DUP) |
405 | 405 | ||
406 | /** | ||
407 | * struct iwl_rb_status - reseve buffer status | ||
408 | * host memory mapped FH registers | ||
409 | * @closed_rb_num [0:11] - Indicates the index of the RB which was closed | ||
410 | * @closed_fr_num [0:11] - Indicates the index of the RX Frame which was closed | ||
411 | * @finished_rb_num [0:11] - Indicates the index of the current RB | ||
412 | * in which the last frame was written to | ||
413 | * @finished_fr_num [0:11] - Indicates the index of the RX Frame | ||
414 | * which was transfered | ||
415 | */ | ||
416 | struct iwl_rb_status { | ||
417 | __le16 closed_rb_num; | ||
418 | __le16 closed_fr_num; | ||
419 | __le16 finished_rb_num; | ||
420 | __le16 finished_fr_nam; | ||
421 | } __attribute__ ((packed)); | ||
406 | 422 | ||
407 | #endif /* !__iwl_fh_h__ */ | 423 | #endif /* !__iwl_fh_h__ */ |