Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 134365
b: refs/heads/master
c: 7530f85
h: refs/heads/master
i:
  134363: 04f63b9
v: v3
  • Loading branch information
Winkler, Tomas authored and John W. Linville committed Feb 9, 2009
1 parent 10b7e9c commit 5c59285
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8ccde88a87a3dc906234b281a036fee9c7371949
refs/heads/master: 7530f85f086a5d58a5e43b1a98993801fe509c51
10 changes: 5 additions & 5 deletions trunk/drivers/net/wireless/iwlwifi/iwl-3945-rs.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ static int iwl3945_rate_scale_flush_windows(struct iwl3945_rs_sta *rs_sta)
int unflushed = 0;
int i;
unsigned long flags;
struct iwl_priv *priv = rs_sta->priv;
struct iwl_priv *priv __maybe_unused = rs_sta->priv;

/*
* For each rate, if we have collected data on that rate
Expand Down Expand Up @@ -216,7 +216,7 @@ static int iwl3945_rate_scale_flush_windows(struct iwl3945_rs_sta *rs_sta)
static void iwl3945_bg_rate_scale_flush(unsigned long data)
{
struct iwl3945_rs_sta *rs_sta = (void *)data;
struct iwl_priv *priv = rs_sta->priv;
struct iwl_priv *priv __maybe_unused = rs_sta->priv;
int unflushed = 0;
unsigned long flags;
u32 packet_count, duration, pps;
Expand Down Expand Up @@ -290,7 +290,7 @@ static void iwl3945_collect_tx_data(struct iwl3945_rs_sta *rs_sta,
{
unsigned long flags;
s32 fail_count;
struct iwl_priv *priv = rs_sta->priv;
struct iwl_priv *priv __maybe_unused = rs_sta->priv;

if (!retries) {
IWL_DEBUG_RATE("leave: retries == 0 -- should be at least 1\n");
Expand Down Expand Up @@ -438,7 +438,7 @@ static void rs_free_sta(void *iwl_priv, struct ieee80211_sta *sta,
{
struct iwl3945_sta_priv *psta = (void *) sta->drv_priv;
struct iwl3945_rs_sta *rs_sta = priv_sta;
struct iwl_priv *priv = rs_sta->priv;
struct iwl_priv *priv __maybe_unused = rs_sta->priv;

psta->rs_sta = NULL;

Expand Down Expand Up @@ -556,7 +556,7 @@ static u16 iwl3945_get_adjacent_rate(struct iwl3945_rs_sta *rs_sta,
{
u8 high = IWL_RATE_INVALID;
u8 low = IWL_RATE_INVALID;
struct iwl_priv *priv = rs_sta->priv;
struct iwl_priv *priv __maybe_unused = rs_sta->priv;

/* 802.11A walks to the next literal adjacent rate in
* the rate table */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/iwlwifi/iwl3945-base.c
Original file line number Diff line number Diff line change
Expand Up @@ -5270,8 +5270,8 @@ static ssize_t store_antenna(struct device *d,
struct device_attribute *attr,
const char *buf, size_t count)
{
struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
int ant;
struct iwl_priv *priv = dev_get_drvdata(d);

if (count == 0)
return 0;
Expand Down

0 comments on commit 5c59285

Please sign in to comment.