diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-01-28 16:47:46 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-01-28 21:46:24 +0100 |
commit | a839cf6955fb6cb731235c310cb0c72c1a2fecbe (patch) | |
tree | ac29b987d552cc0ff42dd0aaee51635fda80bedc /drivers/net | |
parent | iwl3945: set STATUS_READY before commit_rxon (diff) | |
download | linux-a839cf6955fb6cb731235c310cb0c72c1a2fecbe.tar.xz linux-a839cf6955fb6cb731235c310cb0c72c1a2fecbe.zip |
iwlwifi: remove unneeded __packed
struct iwl_queue is not part of firmware interface, so __packed is not
needed. Remove it since is may affect performance.
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Acked-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 6fa1383d72ec..b5f21e041953 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h @@ -138,7 +138,7 @@ struct iwl_queue { * space more than this */ int high_mark; /* high watermark, stop queue if free * space less than this */ -} __packed; +}; /* One for each TFD */ struct iwl_tx_info { |