diff options
author | Rami Rosen <ramirose@gmail.com> | 2008-12-16 02:37:07 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-12-19 15:23:29 -0500 |
commit | 73ec1cc28ebc7854a376cde53f62d487e127fbca (patch) | |
tree | 1cd0794d5f0e3443136f39e749eb56fefe7d7d17 /drivers/net/wireless/iwlwifi/iwl-agn.c | |
parent | ca8a8560569c5eb954cb18c3a91087797ffa81a4 (diff) |
iwlwifi: remove a parameter (dest) from *_fill_beacon_frame() methods.
This patch removes a parameter (dest) from iwl_fill_beacon_frame() (iwl-agn.c)
and from iwl3945_fill_beacon_frame(). (iwl-3945.c,iwl-3945.h)
Signed-off-by: Rami Rosen <ramirose@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-agn.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index bbc1c8052ffa..ac8f83b1da7f 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
@@ -371,7 +371,7 @@ static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame) | |||
371 | 371 | ||
372 | static unsigned int iwl_fill_beacon_frame(struct iwl_priv *priv, | 372 | static unsigned int iwl_fill_beacon_frame(struct iwl_priv *priv, |
373 | struct ieee80211_hdr *hdr, | 373 | struct ieee80211_hdr *hdr, |
374 | const u8 *dest, int left) | 374 | int left) |
375 | { | 375 | { |
376 | if (!iwl_is_associated(priv) || !priv->ibss_beacon || | 376 | if (!iwl_is_associated(priv) || !priv->ibss_beacon || |
377 | ((priv->iw_mode != NL80211_IFTYPE_ADHOC) && | 377 | ((priv->iw_mode != NL80211_IFTYPE_ADHOC) && |
@@ -424,7 +424,6 @@ static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv, | |||
424 | tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; | 424 | tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
425 | 425 | ||
426 | frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame, | 426 | frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame, |
427 | iwl_bcast_addr, | ||
428 | sizeof(frame->u) - sizeof(*tx_beacon_cmd)); | 427 | sizeof(frame->u) - sizeof(*tx_beacon_cmd)); |
429 | 428 | ||
430 | BUG_ON(frame_size > MAX_MPDU_SIZE); | 429 | BUG_ON(frame_size > MAX_MPDU_SIZE); |