diff options
author | Samuel Ortiz <samuel.ortiz@intel.com> | 2008-12-21 22:31:16 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 15:59:24 -0500 |
commit | 188cf6c73a72be1d8c118580a40d70cd76415eec (patch) | |
tree | e684a15fb8011a5666075062315790f3cb6d1600 /drivers/net/wireless/iwlwifi/iwl-fh.h | |
parent | 42427b4e436bbbf038742ecbb3bf09815f93ed7a (diff) |
iwl3945: sync tx queue data structure with iwlagn
We are now using the iwl_tx_queue for iwl3945. To reach that goal, we
included the 3945 specific tfd frame structure to iwl_tx_queue. This
has no effect on the current iwlagn code.
Signed-off-by: Samuel Ortiz <samuel.ortiz@intel.com>
Signed-off-by: Abhijeet Kolekar <abhijeet.kolekar@intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-fh.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-fh.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-fh.h b/drivers/net/wireless/iwlwifi/iwl-fh.h index 7c19790a3ea7..313b03b5b4cd 100644 --- a/drivers/net/wireless/iwlwifi/iwl-fh.h +++ b/drivers/net/wireless/iwlwifi/iwl-fh.h | |||
@@ -478,6 +478,17 @@ struct iwl_tfd { | |||
478 | __le32 __pad; | 478 | __le32 __pad; |
479 | } __attribute__ ((packed)); | 479 | } __attribute__ ((packed)); |
480 | 480 | ||
481 | struct iwl3945_tfd_frame_data { | ||
482 | __le32 addr; | ||
483 | __le32 len; | ||
484 | } __attribute__ ((packed)); | ||
485 | |||
486 | struct iwl3945_tfd_frame { | ||
487 | __le32 control_flags; | ||
488 | struct iwl3945_tfd_frame_data pa[4]; | ||
489 | u8 reserved[28]; | ||
490 | } __attribute__ ((packed)); | ||
491 | |||
481 | 492 | ||
482 | /* Keep Warm Size */ | 493 | /* Keep Warm Size */ |
483 | #define IWL_KW_SIZE 0x1000 /* 4k */ | 494 | #define IWL_KW_SIZE 0x1000 /* 4k */ |