projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2943f13
)
iwlwifi: fix reserved2 field in iwl4965_addsta
author
Wey-Yi Guy
<wey-yi.w.guy@intel.com>
Fri, 20 Nov 2009 20:05:01 +0000
(12:05 -0800)
committer
John W. Linville
<linville@tuxdriver.com>
Mon, 23 Nov 2009 22:05:34 +0000
(17:05 -0500)
reserved2 field in "struct iwl4965_addsta_cmd" is __le16.
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/iwlwifi/iwl-4965.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/iwlwifi/iwl-4965.c
b/drivers/net/wireless/iwlwifi/iwl-4965.c
index d1fab4e19204727053aaad42cd26c87d4b36b57e..a8914898133eb535bc0c5ac6f89a6434f8215e63 100644
(file)
--- a/
drivers/net/wireless/iwlwifi/iwl-4965.c
+++ b/
drivers/net/wireless/iwlwifi/iwl-4965.c
@@
-1819,7
+1819,7
@@
static u16 iwl4965_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data)
addsta->add_immediate_ba_ssn = cmd->add_immediate_ba_ssn;
addsta->sleep_tx_count = cmd->sleep_tx_count;
addsta->reserved1 = cpu_to_le16(0);
- addsta->reserved2 = cpu_to_le
32
(0);
+ addsta->reserved2 = cpu_to_le
16
(0);
return (u16)sizeof(struct iwl4965_addsta_cmd);
}