Skip to content

Commit

Permalink
iwlwifi: fix compliation warnings
Browse files Browse the repository at this point in the history
This patch fixes compilation warnings introduced by 'fix ucode assertion
for RX queue overrun' patch

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Tomas Winkler authored and David S. Miller committed Jan 28, 2008
1 parent 0946687 commit 4fd1f84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/net/wireless/iwlwifi/iwl3945-base.c
Original file line number Diff line number Diff line change
Expand Up @@ -4163,7 +4163,7 @@ static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
/*
* this should be called while priv->lock is locked
*/
void __iwl3945_rx_replenish(void *data)
static void __iwl3945_rx_replenish(void *data)
{
struct iwl3945_priv *priv = data;

Expand Down
4 changes: 2 additions & 2 deletions drivers/net/wireless/iwlwifi/iwl4965-base.c
Original file line number Diff line number Diff line change
Expand Up @@ -4534,7 +4534,7 @@ static void iwl4965_rx_allocate(struct iwl4965_priv *priv)
/*
* this should be called while priv->lock is locked
*/
void __iwl4965_rx_replenish(void *data)
static void __iwl4965_rx_replenish(void *data)
{
struct iwl4965_priv *priv = data;

Expand Down Expand Up @@ -6038,7 +6038,7 @@ static void iwl4965_dealloc_ucode_pci(struct iwl4965_priv *priv)
* iwl4965_verify_inst_full - verify runtime uCode image in card vs. host,
* looking at all data.
*/
static int iwl4965_verify_inst_full(struct iwl4965_priv *priv, __le32 * image,
static int iwl4965_verify_inst_full(struct iwl4965_priv *priv, __le32 *image,
u32 len)
{
u32 val;
Expand Down

0 comments on commit 4fd1f84

Please sign in to comment.