Commit 232913b5 authored by Stanislaw Gruszka's avatar Stanislaw Gruszka

iwlegacy: remove not needed parentheses

Signed-off-by: default avatarStanislaw Gruszka <sgruszka@redhat.com>
parent db54eb57
...@@ -264,8 +264,8 @@ struct il3945_eeprom { ...@@ -264,8 +264,8 @@ struct il3945_eeprom {
static inline int il3945_hw_valid_rtc_data_addr(u32 addr) static inline int il3945_hw_valid_rtc_data_addr(u32 addr)
{ {
return (addr >= IWL39_RTC_DATA_LOWER_BOUND) && return (addr >= IWL39_RTC_DATA_LOWER_BOUND &&
(addr < IWL39_RTC_DATA_UPPER_BOUND); addr < IWL39_RTC_DATA_UPPER_BOUND);
} }
/* Base physical address of il3945_shared is provided to FH_TSSR_CBB_BASE /* Base physical address of il3945_shared is provided to FH_TSSR_CBB_BASE
......
...@@ -104,7 +104,7 @@ static u8 il3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band) ...@@ -104,7 +104,7 @@ static u8 il3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band)
u32 table_size = 0; u32 table_size = 0;
struct il3945_tpt_entry *tpt_table = NULL; struct il3945_tpt_entry *tpt_table = NULL;
if ((rssi < IL_MIN_RSSI_VAL) || (rssi > IL_MAX_RSSI_VAL)) if (rssi < IL_MIN_RSSI_VAL || rssi > IL_MAX_RSSI_VAL)
rssi = IL_MIN_RSSI_VAL; rssi = IL_MIN_RSSI_VAL;
switch (band) { switch (band) {
...@@ -123,7 +123,7 @@ static u8 il3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band) ...@@ -123,7 +123,7 @@ static u8 il3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band)
break; break;
} }
while ((index < table_size) && (rssi < tpt_table[index].min_rssi)) while (index < table_size && rssi < tpt_table[index].min_rssi)
index++; index++;
index = min(index, (table_size - 1)); index = min(index, (table_size - 1));
...@@ -315,8 +315,8 @@ static void il3945_collect_tx_data(struct il3945_rs_sta *rs_sta, ...@@ -315,8 +315,8 @@ static void il3945_collect_tx_data(struct il3945_rs_sta *rs_sta,
fail_count = window->counter - window->success_counter; fail_count = window->counter - window->success_counter;
/* Calculate average throughput, if we have enough history. */ /* Calculate average throughput, if we have enough history. */
if ((fail_count >= IL_RATE_MIN_FAILURE_TH) || if (fail_count >= IL_RATE_MIN_FAILURE_TH ||
(window->success_counter >= IL_RATE_MIN_SUCCESS_TH)) window->success_counter >= IL_RATE_MIN_SUCCESS_TH)
window->average_tpt = ((window->success_ratio * window->average_tpt = ((window->success_ratio *
rs_sta->expected_tpt[index] + 64) / 128); rs_sta->expected_tpt[index] + 64) / 128);
else else
...@@ -461,7 +461,7 @@ static void il3945_rs_tx_status(void *il_rate, struct ieee80211_supported_band * ...@@ -461,7 +461,7 @@ static void il3945_rs_tx_status(void *il_rate, struct ieee80211_supported_band *
retries = IL_RATE_RETRY_TH; retries = IL_RATE_RETRY_TH;
first_index = sband->bitrates[info->status.rates[0].idx].hw_value; first_index = sband->bitrates[info->status.rates[0].idx].hw_value;
if ((first_index < 0) || (first_index >= IL_RATE_COUNT_3945)) { if (first_index < 0 || first_index >= IL_RATE_COUNT_3945) {
D_RATE("leave: Rate out of bounds: %d\n", first_index); D_RATE("leave: Rate out of bounds: %d\n", first_index);
return; return;
} }
...@@ -663,9 +663,9 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta, ...@@ -663,9 +663,9 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
/* get user max rate if set */ /* get user max rate if set */
max_rate_idx = txrc->max_rate_idx; max_rate_idx = txrc->max_rate_idx;
if ((sband->band == IEEE80211_BAND_5GHZ) && (max_rate_idx != -1)) if (sband->band == IEEE80211_BAND_5GHZ && max_rate_idx != -1)
max_rate_idx += IL_FIRST_OFDM_RATE; max_rate_idx += IL_FIRST_OFDM_RATE;
if ((max_rate_idx < 0) || (max_rate_idx >= IL_RATE_COUNT)) if (max_rate_idx < 0 || max_rate_idx >= IL_RATE_COUNT)
max_rate_idx = -1; max_rate_idx = -1;
index = min(rs_sta->last_txrate_idx & 0xffff, IL_RATE_COUNT_3945 - 1); index = min(rs_sta->last_txrate_idx & 0xffff, IL_RATE_COUNT_3945 - 1);
...@@ -686,7 +686,7 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta, ...@@ -686,7 +686,7 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
} }
/* force user max rate if set by user */ /* force user max rate if set by user */
if ((max_rate_idx != -1) && (max_rate_idx < index)) { if (max_rate_idx != -1 && max_rate_idx < index) {
if (rate_mask & (1 << max_rate_idx)) if (rate_mask & (1 << max_rate_idx))
index = max_rate_idx; index = max_rate_idx;
} }
...@@ -695,8 +695,8 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta, ...@@ -695,8 +695,8 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
fail_count = window->counter - window->success_counter; fail_count = window->counter - window->success_counter;
if (((fail_count < IL_RATE_MIN_FAILURE_TH) && if (fail_count < IL_RATE_MIN_FAILURE_TH &&
(window->success_counter < IL_RATE_MIN_SUCCESS_TH))) { window->success_counter < IL_RATE_MIN_SUCCESS_TH) {
spin_unlock_irqrestore(&rs_sta->lock, flags); spin_unlock_irqrestore(&rs_sta->lock, flags);
D_RATE("Invalid average_tpt on rate %d: " D_RATE("Invalid average_tpt on rate %d: "
...@@ -721,7 +721,7 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta, ...@@ -721,7 +721,7 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
high = (high_low >> 8) & 0xff; high = (high_low >> 8) & 0xff;
/* If user set max rate, dont allow higher than user constrain */ /* If user set max rate, dont allow higher than user constrain */
if ((max_rate_idx != -1) && (max_rate_idx < high)) if (max_rate_idx != -1 && max_rate_idx < high)
high = IL_RATE_INVALID; high = IL_RATE_INVALID;
/* Collect Measured throughputs of adjacent rates */ /* Collect Measured throughputs of adjacent rates */
...@@ -736,13 +736,13 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta, ...@@ -736,13 +736,13 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
scale_action = 0; scale_action = 0;
/* Low success ratio , need to drop the rate */ /* Low success ratio , need to drop the rate */
if ((window->success_ratio < IL_RATE_DECREASE_TH) || !current_tpt) { if (window->success_ratio < IL_RATE_DECREASE_TH || !current_tpt) {
D_RATE("decrease rate because of low success_ratio\n"); D_RATE("decrease rate because of low success_ratio\n");
scale_action = -1; scale_action = -1;
/* No throughput measured yet for adjacent rates, /* No throughput measured yet for adjacent rates,
* try increase */ * try increase */
} else if ((low_tpt == IL_INVALID_VALUE) && } else if (low_tpt == IL_INVALID_VALUE &&
(high_tpt == IL_INVALID_VALUE)) { high_tpt == IL_INVALID_VALUE) {
if (high != IL_RATE_INVALID && window->success_ratio >= IL_RATE_INCREASE_TH) if (high != IL_RATE_INVALID && window->success_ratio >= IL_RATE_INCREASE_TH)
scale_action = 1; scale_action = 1;
...@@ -752,9 +752,9 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta, ...@@ -752,9 +752,9 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
/* Both adjacent throughputs are measured, but neither one has /* Both adjacent throughputs are measured, but neither one has
* better throughput; we're using the best rate, don't change * better throughput; we're using the best rate, don't change
* it! */ * it! */
} else if ((low_tpt != IL_INVALID_VALUE) && } else if (low_tpt != IL_INVALID_VALUE &&
(high_tpt != IL_INVALID_VALUE) && high_tpt != IL_INVALID_VALUE &&
(low_tpt < current_tpt) && (high_tpt < current_tpt)) { low_tpt < current_tpt && high_tpt < current_tpt) {
D_RATE("No action -- low [%d] & high [%d] < " D_RATE("No action -- low [%d] & high [%d] < "
"current_tpt [%d]\n", "current_tpt [%d]\n",
...@@ -790,9 +790,9 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta, ...@@ -790,9 +790,9 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
/* Sanity check; asked for decrease, but success rate or throughput /* Sanity check; asked for decrease, but success rate or throughput
* has been good at old rate. Don't change it. */ * has been good at old rate. Don't change it. */
if ((scale_action == -1) && (low != IL_RATE_INVALID) && if (scale_action == -1 && low != IL_RATE_INVALID &&
((window->success_ratio > IL_RATE_HIGH_TH) || (window->success_ratio > IL_RATE_HIGH_TH ||
(current_tpt > (100 * rs_sta->expected_tpt[low])))) current_tpt > 100 * rs_sta->expected_tpt[low]))
scale_action = 0; scale_action = 0;
switch (scale_action) { switch (scale_action) {
......
...@@ -173,7 +173,7 @@ void il3945_disable_events(struct il_priv *il) ...@@ -173,7 +173,7 @@ void il3945_disable_events(struct il_priv *il)
disable_ptr = il_read_targ_mem(il, base + (4 * sizeof(u32))); disable_ptr = il_read_targ_mem(il, base + (4 * sizeof(u32)));
array_size = il_read_targ_mem(il, base + (5 * sizeof(u32))); array_size = il_read_targ_mem(il, base + (5 * sizeof(u32)));
if (IL_EVT_DISABLE && (array_size == IL_EVT_DISABLE_SIZE)) { if (IL_EVT_DISABLE && array_size == IL_EVT_DISABLE_SIZE) {
D_INFO("Disabling selected uCode log events at 0x%x\n", D_INFO("Disabling selected uCode log events at 0x%x\n",
disable_ptr); disable_ptr);
for (i = 0; i < IL_EVT_DISABLE_SIZE; i++) for (i = 0; i < IL_EVT_DISABLE_SIZE; i++)
...@@ -293,9 +293,8 @@ static void il3945_tx_queue_reclaim(struct il_priv *il, ...@@ -293,9 +293,8 @@ static void il3945_tx_queue_reclaim(struct il_priv *il,
il->cfg->ops->lib->txq_free_tfd(il, txq); il->cfg->ops->lib->txq_free_tfd(il, txq);
} }
if (il_queue_space(q) > q->low_mark && (txq_id >= 0) && if (il_queue_space(q) > q->low_mark && txq_id >= 0 &&
(txq_id != IWL39_CMD_QUEUE_NUM) && txq_id != IWL39_CMD_QUEUE_NUM && il->mac80211_registered)
il->mac80211_registered)
il_wake_queue(il, txq); il_wake_queue(il, txq);
} }
...@@ -316,7 +315,7 @@ static void il3945_rx_reply_tx(struct il_priv *il, ...@@ -316,7 +315,7 @@ static void il3945_rx_reply_tx(struct il_priv *il,
int rate_idx; int rate_idx;
int fail; int fail;
if ((index >= txq->q.n_bd) || (il_queue_used(&txq->q, index) == 0)) { if (index >= txq->q.n_bd || il_queue_used(&txq->q, index) == 0) {
IL_ERR("Read index for DMA queue txq_id (%d) index %d " IL_ERR("Read index for DMA queue txq_id (%d) index %d "
"is out of range [0-%d] %d %d\n", txq_id, "is out of range [0-%d] %d %d\n", txq_id,
index, txq->q.n_bd, txq->q.write_ptr, index, txq->q.n_bd, txq->q.write_ptr,
...@@ -544,8 +543,8 @@ static void il3945_rx_reply_rx(struct il_priv *il, ...@@ -544,8 +543,8 @@ static void il3945_rx_reply_rx(struct il_priv *il,
return; return;
} }
if (!(rx_end->status & RX_RES_STATUS_NO_CRC32_ERROR) if (!(rx_end->status & RX_RES_STATUS_NO_CRC32_ERROR) ||
|| !(rx_end->status & RX_RES_STATUS_NO_RXE_OVERFLOW)) { !(rx_end->status & RX_RES_STATUS_NO_RXE_OVERFLOW)) {
D_RX("Bad CRC or FIFO: 0x%08X.\n", rx_end->status); D_RX("Bad CRC or FIFO: 0x%08X.\n", rx_end->status);
return; return;
} }
...@@ -599,7 +598,7 @@ int il3945_hw_txq_attach_buf_to_tfd(struct il_priv *il, ...@@ -599,7 +598,7 @@ int il3945_hw_txq_attach_buf_to_tfd(struct il_priv *il,
count = TFD_CTL_COUNT_GET(le32_to_cpu(tfd->control_flags)); count = TFD_CTL_COUNT_GET(le32_to_cpu(tfd->control_flags));
if ((count >= NUM_TFD_CHUNKS) || (count < 0)) { if (count >= NUM_TFD_CHUNKS || count < 0) {
IL_ERR("Error can not send more than %d chunks\n", IL_ERR("Error can not send more than %d chunks\n",
NUM_TFD_CHUNKS); NUM_TFD_CHUNKS);
return -EINVAL; return -EINVAL;
...@@ -1053,7 +1052,7 @@ static int il3945_hw_reg_adjust_power_by_temp(int new_reading, int old_reading) ...@@ -1053,7 +1052,7 @@ static int il3945_hw_reg_adjust_power_by_temp(int new_reading, int old_reading)
*/ */
static inline int il3945_hw_reg_temp_out_of_range(int temperature) static inline int il3945_hw_reg_temp_out_of_range(int temperature)
{ {
return ((temperature < -260) || (temperature > 25)) ? 1 : 0; return (temperature < -260 || temperature > 25) ? 1 : 0;
} }
int il3945_hw_get_temperature(struct il_priv *il) int il3945_hw_get_temperature(struct il_priv *il)
...@@ -1666,10 +1665,10 @@ static int il3945_send_rxon_assoc(struct il_priv *il, ...@@ -1666,10 +1665,10 @@ static int il3945_send_rxon_assoc(struct il_priv *il,
const struct il_rxon_cmd *rxon1 = &ctx->staging; const struct il_rxon_cmd *rxon1 = &ctx->staging;
const struct il_rxon_cmd *rxon2 = &ctx->active; const struct il_rxon_cmd *rxon2 = &ctx->active;
if ((rxon1->flags == rxon2->flags) && if (rxon1->flags == rxon2->flags &&
(rxon1->filter_flags == rxon2->filter_flags) && rxon1->filter_flags == rxon2->filter_flags &&
(rxon1->cck_basic_rates == rxon2->cck_basic_rates) && rxon1->cck_basic_rates == rxon2->cck_basic_rates &&
(rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) { rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates) {
D_INFO("Using current RXON_ASSOC. Not resending.\n"); D_INFO("Using current RXON_ASSOC. Not resending.\n");
return 0; return 0;
} }
......
...@@ -198,8 +198,8 @@ static int il4965_sens_energy_cck(struct il_priv *il, ...@@ -198,8 +198,8 @@ static int il4965_sens_energy_cck(struct il_priv *il,
data->num_in_cck_no_fa); data->num_in_cck_no_fa);
/* If we got too many false alarms this time, reduce sensitivity */ /* If we got too many false alarms this time, reduce sensitivity */
if ((false_alarms > max_false_alarms) && if (false_alarms > max_false_alarms &&
(data->auto_corr_cck > AUTO_CORR_MAX_TH_CCK)) { data->auto_corr_cck > AUTO_CORR_MAX_TH_CCK) {
D_CALIB("norm FA %u > max FA %u\n", D_CALIB("norm FA %u > max FA %u\n",
false_alarms, max_false_alarms); false_alarms, max_false_alarms);
D_CALIB("... reducing sensitivity\n"); D_CALIB("... reducing sensitivity\n");
...@@ -230,9 +230,9 @@ static int il4965_sens_energy_cck(struct il_priv *il, ...@@ -230,9 +230,9 @@ static int il4965_sens_energy_cck(struct il_priv *il,
* from a previous beacon with too many, or healthy # FAs * from a previous beacon with too many, or healthy # FAs
* OR 2) We've seen a lot of beacons (100) with too few * OR 2) We've seen a lot of beacons (100) with too few
* false alarms */ * false alarms */
if ((data->nrg_prev_state != IL_FA_TOO_MANY) && if (data->nrg_prev_state != IL_FA_TOO_MANY &&
((data->nrg_auto_corr_silence_diff > NRG_DIFF) || (data->nrg_auto_corr_silence_diff > NRG_DIFF ||
(data->num_in_cck_no_fa > MAX_NUMBER_CCK_NO_FA))) { data->num_in_cck_no_fa > MAX_NUMBER_CCK_NO_FA)) {
D_CALIB("... increasing sensitivity\n"); D_CALIB("... increasing sensitivity\n");
/* Increase nrg value to increase sensitivity */ /* Increase nrg value to increase sensitivity */
...@@ -289,9 +289,9 @@ static int il4965_sens_energy_cck(struct il_priv *il, ...@@ -289,9 +289,9 @@ static int il4965_sens_energy_cck(struct il_priv *il,
val = data->auto_corr_cck_mrc + AUTO_CORR_STEP_CCK; val = data->auto_corr_cck_mrc + AUTO_CORR_STEP_CCK;
data->auto_corr_cck_mrc = data->auto_corr_cck_mrc =
min((u32)ranges->auto_corr_max_cck_mrc, val); min((u32)ranges->auto_corr_max_cck_mrc, val);
} else if ((false_alarms < min_false_alarms) && } else if (false_alarms < min_false_alarms &&
((data->nrg_auto_corr_silence_diff > NRG_DIFF) || (data->nrg_auto_corr_silence_diff > NRG_DIFF ||
(data->num_in_cck_no_fa > MAX_NUMBER_CCK_NO_FA))) { data->num_in_cck_no_fa > MAX_NUMBER_CCK_NO_FA)) {
/* Decrease auto_corr values to increase sensitivity */ /* Decrease auto_corr values to increase sensitivity */
val = data->auto_corr_cck - AUTO_CORR_STEP_CCK; val = data->auto_corr_cck - AUTO_CORR_STEP_CCK;
...@@ -747,9 +747,8 @@ static void il4965_gain_computation(struct il_priv *il, ...@@ -747,9 +747,8 @@ static void il4965_gain_computation(struct il_priv *il,
for (i = default_chain; i < NUM_RX_CHAINS; i++) { for (i = default_chain; i < NUM_RX_CHAINS; i++) {
s32 delta_g = 0; s32 delta_g = 0;
if (!(data->disconn_array[i]) && if (!data->disconn_array[i] &&
(data->delta_gain_code[i] == data->delta_gain_code[i] == CHAIN_NOISE_DELTA_GAIN_INIT_VAL) {
CHAIN_NOISE_DELTA_GAIN_INIT_VAL)) {
delta_g = average_noise[i] - min_average_noise; delta_g = average_noise[i] - min_average_noise;
data->delta_gain_code[i] = (u8)((delta_g * 10) / 15); data->delta_gain_code[i] = (u8)((delta_g * 10) / 15);
data->delta_gain_code[i] = data->delta_gain_code[i] =
...@@ -860,7 +859,7 @@ void il4965_chain_noise_calibration(struct il_priv *il, void *stat_resp) ...@@ -860,7 +859,7 @@ void il4965_chain_noise_calibration(struct il_priv *il, void *stat_resp)
/* Make sure we accumulate data for just the associated channel /* Make sure we accumulate data for just the associated channel
* (even if scanning). */ * (even if scanning). */
if ((rxon_chnum != stat_chnum) || (rxon_band24 != stat_band24)) { if (rxon_chnum != stat_chnum || rxon_band24 != stat_band24) {
D_CALIB("Stats not from chan=%d, band24=%d\n", D_CALIB("Stats not from chan=%d, band24=%d\n",
rxon_chnum, rxon_band24); rxon_chnum, rxon_band24);
spin_unlock_irqrestore(&il->lock, flags); spin_unlock_irqrestore(&il->lock, flags);
...@@ -920,8 +919,8 @@ void il4965_chain_noise_calibration(struct il_priv *il, void *stat_resp) ...@@ -920,8 +919,8 @@ void il4965_chain_noise_calibration(struct il_priv *il, void *stat_resp)
il->cfg->base_params->chain_noise_num_beacons; il->cfg->base_params->chain_noise_num_beacons;
for (i = 0; i < NUM_RX_CHAINS; i++) { for (i = 0; i < NUM_RX_CHAINS; i++) {
if (!(data->disconn_array[i]) && if (!data->disconn_array[i] &&
(average_noise[i] <= min_average_noise)) { average_noise[i] <= min_average_noise) {
/* This means that chain i is active and has /* This means that chain i is active and has
* lower noise values so far: */ * lower noise values so far: */
min_average_noise = average_noise[i]; min_average_noise = average_noise[i];
......
...@@ -102,8 +102,8 @@ ...@@ -102,8 +102,8 @@
static inline int il4965_hw_valid_rtc_data_addr(u32 addr) static inline int il4965_hw_valid_rtc_data_addr(u32 addr)
{ {
return (addr >= IWL49_RTC_DATA_LOWER_BOUND) && return (addr >= IWL49_RTC_DATA_LOWER_BOUND &&
(addr < IWL49_RTC_DATA_UPPER_BOUND); addr < IWL49_RTC_DATA_UPPER_BOUND);
} }
/********************* START TEMPERATURE *************************************/ /********************* START TEMPERATURE *************************************/
...@@ -147,8 +147,8 @@ static inline int il4965_hw_valid_rtc_data_addr(u32 addr) ...@@ -147,8 +147,8 @@ static inline int il4965_hw_valid_rtc_data_addr(u32 addr)
#define IL_TX_POWER_TEMPERATURE_MAX (410) #define IL_TX_POWER_TEMPERATURE_MAX (410)
#define IL_TX_POWER_TEMPERATURE_OUT_OF_RANGE(t) \ #define IL_TX_POWER_TEMPERATURE_OUT_OF_RANGE(t) \
(((t) < IL_TX_POWER_TEMPERATURE_MIN) || \ ((t) < IL_TX_POWER_TEMPERATURE_MIN || \
((t) > IL_TX_POWER_TEMPERATURE_MAX)) (t) > IL_TX_POWER_TEMPERATURE_MAX)
/********************* END TEMPERATURE ***************************************/ /********************* END TEMPERATURE ***************************************/
......
...@@ -234,7 +234,7 @@ void il4965_rx_queue_restock(struct il_priv *il) ...@@ -234,7 +234,7 @@ void il4965_rx_queue_restock(struct il_priv *il)
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&rxq->lock, flags); spin_lock_irqsave(&rxq->lock, flags);
while ((il_rx_queue_space(rxq) > 0) && (rxq->free_count)) { while (il_rx_queue_space(rxq) > 0 && rxq->free_count) {
/* The overwritten rxb must be a used one */ /* The overwritten rxb must be a used one */
rxb = rxq->queue[rxq->write]; rxb = rxq->queue[rxq->write];
BUG_ON(rxb && rxb->page); BUG_ON(rxb && rxb->page);
...@@ -307,7 +307,7 @@ static void il4965_rx_allocate(struct il_priv *il, gfp_t priority) ...@@ -307,7 +307,7 @@ static void il4965_rx_allocate(struct il_priv *il, gfp_t priority)
"order: %d\n", "order: %d\n",
il->hw_params.rx_page_order); il->hw_params.rx_page_order);
if ((rxq->free_count <= RX_LOW_WATERMARK) && if (rxq->free_count <= RX_LOW_WATERMARK &&
net_ratelimit()) net_ratelimit())
IL_ERR( IL_ERR(
"Failed to alloc_pages with %s. " "Failed to alloc_pages with %s. "
...@@ -1106,7 +1106,7 @@ void il4965_set_rxon_chain(struct il_priv *il, struct il_rxon_context *ctx) ...@@ -1106,7 +1106,7 @@ void il4965_set_rxon_chain(struct il_priv *il, struct il_rxon_context *ctx)
ctx->staging.rx_chain = cpu_to_le16(rx_chain); ctx->staging.rx_chain = cpu_to_le16(rx_chain);
if (!is_single && (active_rx_cnt >= IL_NUM_RX_CHAINS_SINGLE) && is_cam) if (!is_single && active_rx_cnt >= IL_NUM_RX_CHAINS_SINGLE && is_cam)
ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK; ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
else else
ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK; ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
......
This diff is collapsed.
...@@ -195,8 +195,8 @@ static void il4965_tx_cmd_build_rate(struct il_priv *il, ...@@ -195,8 +195,8 @@ static void il4965_tx_cmd_build_rate(struct il_priv *il,
* index is invalid. * index is invalid.
*/ */
rate_idx = info->control.rates[0].idx; rate_idx = info->control.rates[0].idx;
if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS || if ((info->control.rates[0].flags & IEEE80211_TX_RC_MCS) ||
(rate_idx < 0) || (rate_idx > IL_RATE_COUNT_LEGACY)) rate_idx < 0 || rate_idx > IL_RATE_COUNT_LEGACY)
rate_idx = rate_lowest_index(&il->bands[info->band], rate_idx = rate_lowest_index(&il->bands[info->band],
info->control.sta); info->control.sta);
/* For 5 GHZ band, remap mac80211 rate indices into driver indices */ /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
...@@ -208,7 +208,7 @@ static void il4965_tx_cmd_build_rate(struct il_priv *il, ...@@ -208,7 +208,7 @@ static void il4965_tx_cmd_build_rate(struct il_priv *il,
rate_flags = 0; rate_flags = 0;
/* Set CCK flag as needed */ /* Set CCK flag as needed */
if ((rate_idx >= IL_FIRST_CCK_RATE) && (rate_idx <= IL_LAST_CCK_RATE)) if (rate_idx >= IL_FIRST_CCK_RATE && rate_idx <= IL_LAST_CCK_RATE)
rate_flags |= RATE_MCS_CCK_MSK; rate_flags |= RATE_MCS_CCK_MSK;
/* Set up antennas */ /* Set up antennas */
...@@ -535,8 +535,7 @@ int il4965_tx_skb(struct il_priv *il, struct sk_buff *skb) ...@@ -535,8 +535,7 @@ int il4965_tx_skb(struct il_priv *il, struct sk_buff *skb)
if (sta_priv && sta_priv->client && !is_agg) if (sta_priv && sta_priv->client && !is_agg)
atomic_inc(&sta_priv->pending_frames); atomic_inc(&sta_priv->pending_frames);
if ((il_queue_space(q) < q->high_mark) && if (il_queue_space(q) < q->high_mark && il->mac80211_registered) {
il->mac80211_registered) {
if (wait_write_ptr) { if (wait_write_ptr) {
spin_lock_irqsave(&il->lock, flags); spin_lock_irqsave(&il->lock, flags);
txq->need_update = 1; txq->need_update = 1;
...@@ -1050,8 +1049,8 @@ int il4965_txq_check_empty(struct il_priv *il, ...@@ -1050,8 +1049,8 @@ int il4965_txq_check_empty(struct il_priv *il,
case IL_EMPTYING_HW_QUEUE_DELBA: case IL_EMPTYING_HW_QUEUE_DELBA:
/* We are reclaiming the last packet of the */ /* We are reclaiming the last packet of the */
/* aggregated HW queue */ /* aggregated HW queue */
if ((txq_id == tid_data->agg.txq_id) && if (txq_id == tid_data->agg.txq_id &&
(q->read_ptr == q->write_ptr)) { q->read_ptr == q->write_ptr) {
u16 ssn = SEQ_TO_SN(tid_data->seq_number); u16 ssn = SEQ_TO_SN(tid_data->seq_number);
int tx_fifo = il4965_get_fifo_from_tid(ctx, tid); int tx_fifo = il4965_get_fifo_from_tid(ctx, tid);
D_HT( D_HT(
...@@ -1114,7 +1113,7 @@ int il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int index) ...@@ -1114,7 +1113,7 @@ int il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int index)
int nfreed = 0; int nfreed = 0;
struct ieee80211_hdr *hdr; struct ieee80211_hdr *hdr;
if ((index >= q->n_bd) || (il_queue_used(q, index) == 0)) { if (index >= q->n_bd || il_queue_used(q, index) == 0) {
IL_ERR("Read index for DMA queue txq id (%d), index %d, " IL_ERR("Read index for DMA queue txq id (%d), index %d, "
"is out of range [0-%d] %d %d.\n", txq_id, "is out of range [0-%d] %d %d.\n", txq_id,
index, q->n_bd, q->write_ptr, q->read_ptr); index, q->n_bd, q->write_ptr, q->read_ptr);
...@@ -1321,9 +1320,9 @@ void il4965_rx_reply_compressed_ba(struct il_priv *il, ...@@ -1321,9 +1320,9 @@ void il4965_rx_reply_compressed_ba(struct il_priv *il,
int freed = il4965_tx_queue_reclaim(il, scd_flow, index); int freed = il4965_tx_queue_reclaim(il, scd_flow, index);
il4965_free_tfds_in_queue(il, sta_id, tid, freed); il4965_free_tfds_in_queue(il, sta_id, tid, freed);
if ((il_queue_space(&txq->q) > txq->q.low_mark) && if (il_queue_space(&txq->q) > txq->q.low_mark &&
il->mac80211_registered && il->mac80211_registered &&
(agg->state != IL_EMPTYING_HW_QUEUE_DELBA)) agg->state != IL_EMPTYING_HW_QUEUE_DELBA)
il_wake_queue(il, txq); il_wake_queue(il, txq);
il4965_txq_check_empty(il, sta_id, tid, scd_flow); il4965_txq_check_empty(il, sta_id, tid, scd_flow);
......
...@@ -284,8 +284,8 @@ static bool iw4965_is_ht40_channel(__le32 rxon_flags) ...@@ -284,8 +284,8 @@ static bool iw4965_is_ht40_channel(__le32 rxon_flags)
{ {
int chan_mod = le32_to_cpu(rxon_flags & RXON_FLG_CHANNEL_MODE_MSK) int chan_mod = le32_to_cpu(rxon_flags & RXON_FLG_CHANNEL_MODE_MSK)
>> RXON_FLG_CHANNEL_MODE_POS; >> RXON_FLG_CHANNEL_MODE_POS;
return ((chan_mod == CHANNEL_MODE_PURE_40) || return (chan_mod == CHANNEL_MODE_PURE_40 ||
(chan_mod == CHANNEL_MODE_MIXED)); chan_mod == CHANNEL_MODE_MIXED);
} }
static void il4965_nic_config(struct il_priv *il) static void il4965_nic_config(struct il_priv *il)
...@@ -323,7 +323,7 @@ static void il4965_chain_noise_reset(struct il_priv *il) ...@@ -323,7 +323,7 @@ static void il4965_chain_noise_reset(struct il_priv *il)
{ {
struct il_chain_noise_data *data = &(il->chain_noise_data); struct il_chain_noise_data *data = &(il->chain_noise_data);
if ((data->state == IL_CHAIN_NOISE_ALIVE) && if (data->state == IL_CHAIN_NOISE_ALIVE &&
il_is_any_associated(il)) { il_is_any_associated(il)) {
struct il_calib_diff_gain_cmd cmd; struct il_calib_diff_gain_cmd cmd;
...@@ -458,8 +458,8 @@ static s32 il4965_get_voltage_compensation(s32 eeprom_voltage, ...@@ -458,8 +458,8 @@ static s32 il4965_get_voltage_compensation(s32 eeprom_voltage,
{ {
s32 comp = 0; s32 comp = 0;
if ((TX_POWER_IL_ILLEGAL_VOLTAGE == eeprom_voltage) || if (TX_POWER_IL_ILLEGAL_VOLTAGE == eeprom_voltage ||
(TX_POWER_IL_ILLEGAL_VOLTAGE == current_voltage)) TX_POWER_IL_ILLEGAL_VOLTAGE == current_voltage)
return 0; return 0;
il4965_math_div_round(current_voltage - eeprom_voltage, il4965_math_div_round(current_voltage - eeprom_voltage,
...@@ -506,8 +506,8 @@ static u32 il4965_get_sub_band(const struct il_priv *il, u32 channel) ...@@ -506,8 +506,8 @@ static u32 il4965_get_sub_band(const struct il_priv *il, u32 channel)
if (il->calib_info->band_info[b].ch_from == 0) if (il->calib_info->band_info[b].ch_from == 0)
continue; continue;
if ((channel >= il->calib_info->band_info[b].ch_from) if (channel >= il->calib_info->band_info[b].ch_from &&
&& (channel <= il->calib_info->band_info[b].ch_to)) channel <= il->calib_info->band_info[b].ch_to)
break; break;
} }
...@@ -1158,15 +1158,15 @@ static int il4965_send_rxon_assoc(struct il_priv *il, ...@@ -1158,15 +1158,15 @@ static int il4965_send_rxon_assoc(struct il_priv *il,
const struct il_rxon_cmd *rxon1 = &ctx->staging; const struct il_rxon_cmd *rxon1 = &ctx->staging;
const struct il_rxon_cmd *rxon2 = &ctx->active; const struct il_rxon_cmd *rxon2 = &ctx->active;
if ((rxon1->flags == rxon2->flags) && if (rxon1->flags == rxon2->flags &&
(rxon1->filter_flags == rxon2->filter_flags) && rxon1->filter_flags == rxon2->filter_flags &&
(rxon1->cck_basic_rates == rxon2->cck_basic_rates) && rxon1->cck_basic_rates == rxon2->cck_basic_rates &&
(rxon1->ofdm_ht_single_stream_basic_rates == rxon1->ofdm_ht_single_stream_basic_rates ==
rxon2->ofdm_ht_single_stream_basic_rates) && rxon2->ofdm_ht_single_stream_basic_rates &&
(rxon1->ofdm_ht_dual_stream_basic_rates == rxon1->ofdm_ht_dual_stream_basic_rates ==
rxon2->ofdm_ht_dual_stream_basic_rates) && rxon2->ofdm_ht_dual_stream_basic_rates &&
(rxon1->rx_chain == rxon2->rx_chain) && rxon1->rx_chain == rxon2->rx_chain &&
(rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) { rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates) {
D_INFO("Using current RXON_ASSOC. Not resending.\n"); D_INFO("Using current RXON_ASSOC. Not resending.\n");
return 0; return 0;
} }
...@@ -1216,7 +1216,7 @@ static int il4965_commit_rxon(struct il_priv *il, struct il_rxon_context *ctx) ...@@ -1216,7 +1216,7 @@ static int il4965_commit_rxon(struct il_priv *il, struct il_rxon_context *ctx)
* abort any previous channel switch if still in process * abort any previous channel switch if still in process
*/ */
if (test_bit(STATUS_CHANNEL_SWITCH_PENDING, &il->status) && if (test_bit(STATUS_CHANNEL_SWITCH_PENDING, &il->status) &&
(il->switch_channel != ctx->staging.channel)) { il->switch_channel != ctx->staging.channel) {
D_11H("abort channel switch on %d\n", D_11H("abort channel switch on %d\n",
le16_to_cpu(il->switch_channel)); le16_to_cpu(il->switch_channel));
il_chswitch_done(il, false); il_chswitch_done(il, false);
...@@ -1366,7 +1366,7 @@ static int il4965_hw_channel_switch(struct il_priv *il, ...@@ -1366,7 +1366,7 @@ static int il4965_hw_channel_switch(struct il_priv *il,
* calculate the ucode channel switch time * calculate the ucode channel switch time
* adding TSF as one of the factor for when to switch * adding TSF as one of the factor for when to switch
*/ */
if ((il->ucode_beacon_time > tsf_low) && beacon_interval) { if (il->ucode_beacon_time > tsf_low && beacon_interval) {
if (switch_count > ((il->ucode_beacon_time - tsf_low) / if (switch_count > ((il->ucode_beacon_time - tsf_low) /
beacon_interval)) { beacon_interval)) {
switch_count -= (il->ucode_beacon_time - switch_count -= (il->ucode_beacon_time -
...@@ -1789,7 +1789,7 @@ static void il4965_rx_reply_tx(struct il_priv *il, ...@@ -1789,7 +1789,7 @@ static void il4965_rx_reply_tx(struct il_priv *il,
u8 *qc = NULL; u8 *qc = NULL;
unsigned long flags; unsigned long flags;
if ((index >= txq->q.n_bd) || (il_queue_used(&txq->q, index) == 0)) { if (index >= txq->q.n_bd || il_queue_used(&txq->q, index) == 0) {
IL_ERR("Read index for DMA queue txq_id (%d) index %d " IL_ERR("Read index for DMA queue txq_id (%d) index %d "
"is out of range [0-%d] %d %d\n", txq_id, "is out of range [0-%d] %d %d\n", txq_id,
index, txq->q.n_bd, txq->q.write_ptr, index, txq->q.n_bd, txq->q.write_ptr,
...@@ -1838,8 +1838,8 @@ static void il4965_rx_reply_tx(struct il_priv *il, ...@@ -1838,8 +1838,8 @@ static void il4965_rx_reply_tx(struct il_priv *il,
tid, freed); tid, freed);
if (il->mac80211_registered && if (il->mac80211_registered &&
(il_queue_space(&txq->q) > txq->q.low_mark) il_queue_space(&txq->q) > txq->q.low_mark &&
&& (agg->state != IL_EMPTYING_HW_QUEUE_DELBA)) agg->state != IL_EMPTYING_HW_QUEUE_DELBA)
il_wake_queue(il, txq); il_wake_queue(il, txq);
} }
} else { } else {
...@@ -1863,7 +1863,7 @@ static void il4965_rx_reply_tx(struct il_priv *il, ...@@ -1863,7 +1863,7 @@ static void il4965_rx_reply_tx(struct il_priv *il,
D_TX_REPLY("Station not known\n"); D_TX_REPLY("Station not known\n");
if (il->mac80211_registered && if (il->mac80211_registered &&
(il_queue_space(&txq->q) > txq->q.low_mark)) il_queue_space(&txq->q) > txq->q.low_mark)
il_wake_queue(il, txq); il_wake_queue(il, txq);
} }
if (qc && likely(sta_id != IL_INVALID_STATION)) if (qc && likely(sta_id != IL_INVALID_STATION))
......
...@@ -163,8 +163,8 @@ static inline u32 il4965_tx_status_to_mac80211(u32 status) ...@@ -163,8 +163,8 @@ static inline u32 il4965_tx_status_to_mac80211(u32 status)
static inline bool il4965_is_tx_success(u32 status) static inline bool il4965_is_tx_success(u32 status)
{ {
status &= TX_STATUS_MSK; status &= TX_STATUS_MSK;
return (status == TX_STATUS_SUCCESS) || return (status == TX_STATUS_SUCCESS ||
(status == TX_STATUS_DIRECT_DONE); status == TX_STATUS_DIRECT_DONE);
} }
u8 il4965_toggle_tx_ant(struct il_priv *il, u8 ant_idx, u8 valid); u8 il4965_toggle_tx_ant(struct il_priv *il, u8 ant_idx, u8 valid);
......
...@@ -251,8 +251,8 @@ int il_init_geos(struct il_priv *il) ...@@ -251,8 +251,8 @@ int il_init_geos(struct il_priv *il)
il->tx_power_user_lmt = max_tx_power; il->tx_power_user_lmt = max_tx_power;
il->tx_power_next = max_tx_power; il->tx_power_next = max_tx_power;
if ((il->bands[IEEE80211_BAND_5GHZ].n_channels == 0) && if (il->bands[IEEE80211_BAND_5GHZ].n_channels == 0 &&
il->cfg->sku & IL_SKU_A) { (il->cfg->sku & IL_SKU_A)) {
IL_INFO("Incorrectly detected BG card as ABG. " IL_INFO("Incorrectly detected BG card as ABG. "
"Please send your PCI ID 0x%04X:0x%04X to maintainer.\n", "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
il->pci_dev->device, il->pci_dev->device,
...@@ -708,8 +708,7 @@ il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch, ...@@ -708,8 +708,7 @@ il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch,
enum ieee80211_band band = ch->band; enum ieee80211_band band = ch->band;
u16 channel = ch->hw_value; u16 channel = ch->hw_value;
if ((le16_to_cpu(ctx->staging.channel) == channel) && if (le16_to_cpu(ctx->staging.channel) == channel && il->band == band)
(il->band == band))
return 0; return 0;
ctx->staging.channel = cpu_to_le16(channel); ctx->staging.channel = cpu_to_le16(channel);
...@@ -2306,8 +2305,8 @@ static void il_ht_conf(struct il_priv *il, ...@@ -2306,8 +2305,8 @@ static void il_ht_conf(struct il_priv *il,
>> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT; >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
maxstreams += 1; maxstreams += 1;
if ((ht_cap->mcs.rx_mask[1] == 0) && if (ht_cap->mcs.rx_mask[1] == 0 &&
(ht_cap->mcs.rx_mask[2] == 0)) ht_cap->mcs.rx_mask[2] == 0)
ht_conf->single_chain_sufficient = true; ht_conf->single_chain_sufficient = true;
if (maxstreams <= 1) if (maxstreams <= 1)
ht_conf->single_chain_sufficient = true; ht_conf->single_chain_sufficient = true;
...@@ -2467,7 +2466,7 @@ void il_mac_bss_info_changed(struct ieee80211_hw *hw, ...@@ -2467,7 +2466,7 @@ void il_mac_bss_info_changed(struct ieee80211_hw *hw,
* mac80211 decides to do both changes at once because * mac80211 decides to do both changes at once because
* it will invoke post_associate. * it will invoke post_associate.
*/ */
if (vif->type == NL80211_IFTYPE_ADHOC && changes & BSS_CHANGED_BEACON) if (vif->type == NL80211_IFTYPE_ADHOC && (changes & BSS_CHANGED_BEACON))
il_beacon_update(hw, vif); il_beacon_update(hw, vif);
if (changes & BSS_CHANGED_ERP_PREAMBLE) { if (changes & BSS_CHANGED_ERP_PREAMBLE) {
...@@ -2482,8 +2481,7 @@ void il_mac_bss_info_changed(struct ieee80211_hw *hw, ...@@ -2482,8 +2481,7 @@ void il_mac_bss_info_changed(struct ieee80211_hw *hw,
if (changes & BSS_CHANGED_ERP_CTS_PROT) { if (changes & BSS_CHANGED_ERP_CTS_PROT) {
D_MAC80211( D_MAC80211(
"ERP_CTS %d\n", bss_conf->use_cts_prot); "ERP_CTS %d\n", bss_conf->use_cts_prot);
if (bss_conf->use_cts_prot && if (bss_conf->use_cts_prot && il->band != IEEE80211_BAND_5GHZ)
(il->band != IEEE80211_BAND_5GHZ))
ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK; ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
else else
ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK; ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
...@@ -2596,7 +2594,7 @@ irqreturn_t il_isr(int irq, void *data) ...@@ -2596,7 +2594,7 @@ irqreturn_t il_isr(int irq, void *data)
goto none; goto none;
} }
if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) { if (inta == 0xFFFFFFFF || (inta & 0xFFFFFFF0) == 0xa5a5a5a0) {
/* Hardware disappeared. It might have already raised /* Hardware disappeared. It might have already raised
* an interrupt */ * an interrupt */
IL_WARN("HARDWARE GONE?? INTA == 0x%08x\n", inta); IL_WARN("HARDWARE GONE?? INTA == 0x%08x\n", inta);
......
...@@ -176,7 +176,7 @@ static inline void il_write_reg_buf(struct il_priv *il, ...@@ -176,7 +176,7 @@ static inline void il_write_reg_buf(struct il_priv *il,
{ {
u32 count = sizeof(u32); u32 count = sizeof(u32);
if ((il != NULL) && (values != NULL)) { if (il != NULL && values != NULL) {
for (; 0 < len; len -= count, reg += count, values++) for (; 0 < len; len -= count, reg += count, values++)
il_wr(il, reg, *values); il_wr(il, reg, *values);
} }
......
...@@ -279,7 +279,7 @@ enum il_table_type { ...@@ -279,7 +279,7 @@ enum il_table_type {
LQ_MAX, LQ_MAX,
}; };
#define is_legacy(tbl) (((tbl) == LQ_G) || ((tbl) == LQ_A)) #define is_legacy(tbl) ((tbl) == LQ_G || (tbl) == LQ_A)
#define is_siso(tbl) ((tbl) == LQ_SISO) #define is_siso(tbl) ((tbl) == LQ_SISO)
#define is_mimo2(tbl) ((tbl) == LQ_MIMO2) #define is_mimo2(tbl) ((tbl) == LQ_MIMO2)
#define is_mimo(tbl) (is_mimo2(tbl)) #define is_mimo(tbl) (is_mimo2(tbl))
......
...@@ -307,7 +307,7 @@ u16 il_get_passive_dwell_time(struct il_priv *il, ...@@ -307,7 +307,7 @@ u16 il_get_passive_dwell_time(struct il_priv *il,
if (!il_is_associated_ctx(ctx)) if (!il_is_associated_ctx(ctx))
continue; continue;
value = ctx->vif ? ctx->vif->bss_conf.beacon_int : 0; value = ctx->vif ? ctx->vif->bss_conf.beacon_int : 0;
if ((value > IL_PASSIVE_DWELL_BASE) || !value) if (value > IL_PASSIVE_DWELL_BASE || !value)
value = IL_PASSIVE_DWELL_BASE; value = IL_PASSIVE_DWELL_BASE;
value = (value * 98) / 100 - IL_CHANNEL_TUNE_TIME * 2; value = (value * 98) / 100 - IL_CHANNEL_TUNE_TIME * 2;
passive = min(value, passive); passive = min(value, passive);
......
...@@ -595,7 +595,7 @@ il_restore_stations(struct il_priv *il, struct il_rxon_context *ctx) ...@@ -595,7 +595,7 @@ il_restore_stations(struct il_priv *il, struct il_rxon_context *ctx)
if (ctx->ctxid != il->stations[i].ctxid) if (ctx->ctxid != il->stations[i].ctxid)
continue; continue;
if ((il->stations[i].used & IL_STA_DRIVER_ACTIVE) && if ((il->stations[i].used & IL_STA_DRIVER_ACTIVE) &&
!(il->stations[i].used & IL_STA_UCODE_ACTIVE)) { !(il->stations[i].used & IL_STA_UCODE_ACTIVE)) {
D_ASSOC("Restoring sta %pM\n", D_ASSOC("Restoring sta %pM\n",
il->stations[i].sta.sta.addr); il->stations[i].sta.sta.addr);
il->stations[i].sta.mode = 0; il->stations[i].sta.mode = 0;
......
...@@ -565,7 +565,7 @@ static void il_hcmd_queue_reclaim(struct il_priv *il, int txq_id, ...@@ -565,7 +565,7 @@ static void il_hcmd_queue_reclaim(struct il_priv *il, int txq_id,
struct il_queue *q = &txq->q; struct il_queue *q = &txq->q;
int nfreed = 0; int nfreed = 0;
if ((idx >= q->n_bd) || (il_queue_used(q, idx) == 0)) { if (idx >= q->n_bd || il_queue_used(q, idx) == 0) {
IL_ERR("Read index for DMA queue txq id (%d), index %d, " IL_ERR("Read index for DMA queue txq id (%d), index %d, "
"is out of range [0-%d] %d %d.\n", txq_id, "is out of range [0-%d] %d %d.\n", txq_id,
idx, q->n_bd, q->write_ptr, q->read_ptr); idx, q->n_bd, q->write_ptr, q->read_ptr);
......
...@@ -646,7 +646,7 @@ static int il3945_tx_skb(struct il_priv *il, struct sk_buff *skb) ...@@ -646,7 +646,7 @@ static int il3945_tx_skb(struct il_priv *il, struct sk_buff *skb)
il_txq_update_write_ptr(il, txq); il_txq_update_write_ptr(il, txq);
spin_unlock_irqrestore(&il->lock, flags); spin_unlock_irqrestore(&il->lock, flags);
if ((il_queue_space(q) < q->high_mark) if (il_queue_space(q) < q->high_mark
&& il->mac80211_registered) { && il->mac80211_registered) {
if (wait_write_ptr) { if (wait_write_ptr) {
spin_lock_irqsave(&il->lock, flags); spin_lock_irqsave(&il->lock, flags);
...@@ -974,7 +974,7 @@ static void il3945_rx_queue_restock(struct il_priv *il) ...@@ -974,7 +974,7 @@ static void il3945_rx_queue_restock(struct il_priv *il)
spin_lock_irqsave(&rxq->lock, flags); spin_lock_irqsave(&rxq->lock, flags);
write = rxq->write & ~0x7; write = rxq->write & ~0x7;
while ((il_rx_queue_space(rxq) > 0) && (rxq->free_count)) { while (il_rx_queue_space(rxq) > 0 && rxq->free_count) {
/* Get next free Rx buffer, remove from free list */ /* Get next free Rx buffer, remove from free list */
element = rxq->rx_free.next; element = rxq->rx_free.next;
rxb = list_entry(element, struct il_rx_mem_buffer, list); rxb = list_entry(element, struct il_rx_mem_buffer, list);
...@@ -995,8 +995,8 @@ static void il3945_rx_queue_restock(struct il_priv *il) ...@@ -995,8 +995,8 @@ static void il3945_rx_queue_restock(struct il_priv *il)
/* If we've added more space for the firmware to place data, tell it. /* If we've added more space for the firmware to place data, tell it.
* Increment device's write pointer in multiples of 8. */ * Increment device's write pointer in multiples of 8. */
if ((rxq->write_actual != (rxq->write & ~0x7)) if (rxq->write_actual != (rxq->write & ~0x7) ||
|| (abs(rxq->write - rxq->read) > 7)) { abs(rxq->write - rxq->read) > 7) {
spin_lock_irqsave(&rxq->lock, flags); spin_lock_irqsave(&rxq->lock, flags);
rxq->need_update = 1; rxq->need_update = 1;
spin_unlock_irqrestore(&rxq->lock, flags); spin_unlock_irqrestore(&rxq->lock, flags);
...@@ -1041,7 +1041,7 @@ static void il3945_rx_allocate(struct il_priv *il, gfp_t priority) ...@@ -1041,7 +1041,7 @@ static void il3945_rx_allocate(struct il_priv *il, gfp_t priority)
if (!page) { if (!page) {
if (net_ratelimit()) if (net_ratelimit())
D_INFO("Failed to allocate SKB buffer.\n"); D_INFO("Failed to allocate SKB buffer.\n");
if ((rxq->free_count <= RX_LOW_WATERMARK) && if (rxq->free_count <= RX_LOW_WATERMARK &&
net_ratelimit()) net_ratelimit())
IL_ERR("Failed to allocate SKB buffer with %s. Only %u free buffers remaining.\n", IL_ERR("Failed to allocate SKB buffer with %s. Only %u free buffers remaining.\n",
priority == GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL", priority == GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL",
...@@ -1254,8 +1254,8 @@ static void il3945_rx_handle(struct il_priv *il) ...@@ -1254,8 +1254,8 @@ static void il3945_rx_handle(struct il_priv *il)
* Ucode should set SEQ_RX_FRAME bit if ucode-originated, * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
* but apparently a few don't get set; catch them here. */ * but apparently a few don't get set; catch them here. */
reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) && reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
(pkt->hdr.cmd != STATISTICS_NOTIFICATION) && pkt->hdr.cmd != STATISTICS_NOTIFICATION &&
(pkt->hdr.cmd != REPLY_TX); pkt->hdr.cmd != REPLY_TX;
/* Based on type of command response or notification, /* Based on type of command response or notification,
* handle those that need handling via function in * handle those that need handling via function in
...@@ -1659,7 +1659,7 @@ static void il3945_init_hw_rates(struct il_priv *il, ...@@ -1659,7 +1659,7 @@ static void il3945_init_hw_rates(struct il_priv *il,
rates[i].hw_value = i; /* Rate scaling will work on indexes */ rates[i].hw_value = i; /* Rate scaling will work on indexes */
rates[i].hw_value_short = i; rates[i].hw_value_short = i;
rates[i].flags = 0; rates[i].flags = 0;
if ((i > IWL39_LAST_OFDM_RATE) || (i < IL_FIRST_OFDM_RATE)) { if (i > IWL39_LAST_OFDM_RATE || i < IL_FIRST_OFDM_RATE) {
/* /*
* If CCK != 1M then set short preamble rate flag. * If CCK != 1M then set short preamble rate flag.
*/ */
...@@ -3294,7 +3294,7 @@ static ssize_t il3945_show_measurement(struct device *d, ...@@ -3294,7 +3294,7 @@ static ssize_t il3945_show_measurement(struct device *d,
il->measurement_status = 0; il->measurement_status = 0;
spin_unlock_irqrestore(&il->lock, flags); spin_unlock_irqrestore(&il->lock, flags);
while (size && (PAGE_SIZE - len)) { while (size && PAGE_SIZE - len) {
hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len, hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
PAGE_SIZE - len, 1); PAGE_SIZE - len, 1);
len = strlen(buf); len = strlen(buf);
...@@ -3406,7 +3406,7 @@ static ssize_t il3945_store_antenna(struct device *d, ...@@ -3406,7 +3406,7 @@ static ssize_t il3945_store_antenna(struct device *d,
return count; return count;
} }
if ((ant >= 0) && (ant <= 2)) { if (ant >= 0 && ant <= 2) {
D_INFO("Setting antenna select to %d.\n", ant); D_INFO("Setting antenna select to %d.\n", ant);
il3945_mod_params.antenna = (enum il3945_antenna)ant; il3945_mod_params.antenna = (enum il3945_antenna)ant;
} else } else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment