diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2009-01-29 16:26:44 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-09 15:03:43 -0500 |
commit | c1b4aa3fb619782213af2af6652663c8f9cef373 (patch) | |
tree | a5c37c26ebf311dbf9428167efdb24915c1b824c /drivers/net/wireless/iwlwifi/iwl-4965.c | |
parent | e5d24efe529b26d782b41a61a5e958c72f36f295 (diff) |
wireless: replace uses of __constant_{endian}
The base versions handle constant folding now.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-4965.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c index 7e9c8cfaa61a..0638f3e37602 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.c +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c | |||
@@ -1995,8 +1995,8 @@ static u16 iwl4965_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data) | |||
1995 | addsta->add_immediate_ba_tid = cmd->add_immediate_ba_tid; | 1995 | addsta->add_immediate_ba_tid = cmd->add_immediate_ba_tid; |
1996 | addsta->remove_immediate_ba_tid = cmd->remove_immediate_ba_tid; | 1996 | addsta->remove_immediate_ba_tid = cmd->remove_immediate_ba_tid; |
1997 | addsta->add_immediate_ba_ssn = cmd->add_immediate_ba_ssn; | 1997 | addsta->add_immediate_ba_ssn = cmd->add_immediate_ba_ssn; |
1998 | addsta->reserved1 = __constant_cpu_to_le16(0); | 1998 | addsta->reserved1 = cpu_to_le16(0); |
1999 | addsta->reserved2 = __constant_cpu_to_le32(0); | 1999 | addsta->reserved2 = cpu_to_le32(0); |
2000 | 2000 | ||
2001 | return (u16)sizeof(struct iwl4965_addsta_cmd); | 2001 | return (u16)sizeof(struct iwl4965_addsta_cmd); |
2002 | } | 2002 | } |