Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
232913b5
Commit
232913b5
authored
Aug 26, 2011
by
Stanislaw Gruszka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iwlegacy: remove not needed parentheses
Signed-off-by:
Stanislaw Gruszka
<
sgruszka@redhat.com
>
parent
db54eb57
Changes
17
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
168 additions
and
182 deletions
+168
-182
drivers/net/wireless/iwlegacy/iwl-3945-hw.h
drivers/net/wireless/iwlegacy/iwl-3945-hw.h
+2
-2
drivers/net/wireless/iwlegacy/iwl-3945-rs.c
drivers/net/wireless/iwlegacy/iwl-3945-rs.c
+20
-20
drivers/net/wireless/iwlegacy/iwl-3945.c
drivers/net/wireless/iwlegacy/iwl-3945.c
+12
-13
drivers/net/wireless/iwlegacy/iwl-4965-calib.c
drivers/net/wireless/iwlegacy/iwl-4965-calib.c
+13
-14
drivers/net/wireless/iwlegacy/iwl-4965-hw.h
drivers/net/wireless/iwlegacy/iwl-4965-hw.h
+4
-4
drivers/net/wireless/iwlegacy/iwl-4965-lib.c
drivers/net/wireless/iwlegacy/iwl-4965-lib.c
+3
-3
drivers/net/wireless/iwlegacy/iwl-4965-rs.c
drivers/net/wireless/iwlegacy/iwl-4965-rs.c
+58
-67
drivers/net/wireless/iwlegacy/iwl-4965-tx.c
drivers/net/wireless/iwlegacy/iwl-4965-tx.c
+9
-10
drivers/net/wireless/iwlegacy/iwl-4965.c
drivers/net/wireless/iwlegacy/iwl-4965.c
+22
-22
drivers/net/wireless/iwlegacy/iwl-4965.h
drivers/net/wireless/iwlegacy/iwl-4965.h
+2
-2
drivers/net/wireless/iwlegacy/iwl-core.c
drivers/net/wireless/iwlegacy/iwl-core.c
+8
-10
drivers/net/wireless/iwlegacy/iwl-io.h
drivers/net/wireless/iwlegacy/iwl-io.h
+1
-1
drivers/net/wireless/iwlegacy/iwl-legacy-rs.h
drivers/net/wireless/iwlegacy/iwl-legacy-rs.h
+1
-1
drivers/net/wireless/iwlegacy/iwl-scan.c
drivers/net/wireless/iwlegacy/iwl-scan.c
+1
-1
drivers/net/wireless/iwlegacy/iwl-sta.c
drivers/net/wireless/iwlegacy/iwl-sta.c
+1
-1
drivers/net/wireless/iwlegacy/iwl-tx.c
drivers/net/wireless/iwlegacy/iwl-tx.c
+1
-1
drivers/net/wireless/iwlegacy/iwl3945-base.c
drivers/net/wireless/iwlegacy/iwl3945-base.c
+10
-10
No files found.
drivers/net/wireless/iwlegacy/iwl-3945-hw.h
View file @
232913b5
...
...
@@ -264,8 +264,8 @@ struct il3945_eeprom {
static
inline
int
il3945_hw_valid_rtc_data_addr
(
u32
addr
)
{
return
(
addr
>=
IWL39_RTC_DATA_LOWER_BOUND
)
&&
(
addr
<
IWL39_RTC_DATA_UPPER_BOUND
);
return
(
addr
>=
IWL39_RTC_DATA_LOWER_BOUND
&&
addr
<
IWL39_RTC_DATA_UPPER_BOUND
);
}
/* Base physical address of il3945_shared is provided to FH_TSSR_CBB_BASE
...
...
drivers/net/wireless/iwlegacy/iwl-3945-rs.c
View file @
232913b5
...
...
@@ -104,7 +104,7 @@ static u8 il3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band)
u32
table_size
=
0
;
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
;
switch
(
band
)
{
...
...
@@ -123,7 +123,7 @@ static u8 il3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band)
break
;
}
while
(
(
index
<
table_size
)
&&
(
rssi
<
tpt_table
[
index
].
min_rssi
)
)
while
(
index
<
table_size
&&
rssi
<
tpt_table
[
index
].
min_rssi
)
index
++
;
index
=
min
(
index
,
(
table_size
-
1
));
...
...
@@ -315,8 +315,8 @@ static void il3945_collect_tx_data(struct il3945_rs_sta *rs_sta,
fail_count
=
window
->
counter
-
window
->
success_counter
;
/* Calculate average throughput, if we have enough history. */
if
(
(
fail_count
>=
IL_RATE_MIN_FAILURE_TH
)
||
(
window
->
success_counter
>=
IL_RATE_MIN_SUCCESS_TH
)
)
if
(
fail_count
>=
IL_RATE_MIN_FAILURE_TH
||
window
->
success_counter
>=
IL_RATE_MIN_SUCCESS_TH
)
window
->
average_tpt
=
((
window
->
success_ratio
*
rs_sta
->
expected_tpt
[
index
]
+
64
)
/
128
);
else
...
...
@@ -461,7 +461,7 @@ static void il3945_rs_tx_status(void *il_rate, struct ieee80211_supported_band *
retries
=
IL_RATE_RETRY_TH
;
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
);
return
;
}
...
...
@@ -663,9 +663,9 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
/* get user max rate if set */
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
;
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
;
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,
}
/* 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
))
index
=
max_rate_idx
;
}
...
...
@@ -695,8 +695,8 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
fail_count
=
window
->
counter
-
window
->
success_counter
;
if
(
((
fail_count
<
IL_RATE_MIN_FAILURE_TH
)
&&
(
window
->
success_counter
<
IL_RATE_MIN_SUCCESS_TH
))
)
{
if
(
fail_count
<
IL_RATE_MIN_FAILURE_TH
&&
window
->
success_counter
<
IL_RATE_MIN_SUCCESS_TH
)
{
spin_unlock_irqrestore
(
&
rs_sta
->
lock
,
flags
);
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,
high
=
(
high_low
>>
8
)
&
0xff
;
/* 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
;
/* Collect Measured throughputs of adjacent rates */
...
...
@@ -736,13 +736,13 @@ static void il3945_rs_get_rate(void *il_r, struct ieee80211_sta *sta,
scale_action
=
0
;
/* 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
"
);
scale_action
=
-
1
;
/* No throughput measured yet for adjacent rates,
* try increase */
}
else
if
(
(
low_tpt
==
IL_INVALID_VALUE
)
&&
(
high_tpt
==
IL_INVALID_VALUE
)
)
{
}
else
if
(
low_tpt
==
IL_INVALID_VALUE
&&
high_tpt
==
IL_INVALID_VALUE
)
{
if
(
high
!=
IL_RATE_INVALID
&&
window
->
success_ratio
>=
IL_RATE_INCREASE_TH
)
scale_action
=
1
;
...
...
@@ -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
* better throughput; we're using the best rate, don't change
* it! */
}
else
if
(
(
low_tpt
!=
IL_INVALID_VALUE
)
&&
(
high_tpt
!=
IL_INVALID_VALUE
)
&&
(
low_tpt
<
current_tpt
)
&&
(
high_tpt
<
current_tpt
)
)
{
}
else
if
(
low_tpt
!=
IL_INVALID_VALUE
&&
high_tpt
!=
IL_INVALID_VALUE
&&
low_tpt
<
current_tpt
&&
high_tpt
<
current_tpt
)
{
D_RATE
(
"No action -- low [%d] & high [%d] < "
"current_tpt [%d]
\n
"
,
...
...
@@ -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
* has been good at old rate. Don't change it. */
if
(
(
scale_action
==
-
1
)
&&
(
low
!=
IL_RATE_INVALID
)
&&
((
window
->
success_ratio
>
IL_RATE_HIGH_TH
)
||
(
current_tpt
>
(
100
*
rs_sta
->
expected_tpt
[
low
]))
))
if
(
scale_action
==
-
1
&&
low
!=
IL_RATE_INVALID
&&
(
window
->
success_ratio
>
IL_RATE_HIGH_TH
||
current_tpt
>
100
*
rs_sta
->
expected_tpt
[
low
]
))
scale_action
=
0
;
switch
(
scale_action
)
{
...
...
drivers/net/wireless/iwlegacy/iwl-3945.c
View file @
232913b5
...
...
@@ -173,7 +173,7 @@ void il3945_disable_events(struct il_priv *il)
disable_ptr
=
il_read_targ_mem
(
il
,
base
+
(
4
*
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
"
,
disable_ptr
);
for
(
i
=
0
;
i
<
IL_EVT_DISABLE_SIZE
;
i
++
)
...
...
@@ -293,9 +293,8 @@ static void il3945_tx_queue_reclaim(struct il_priv *il,
il
->
cfg
->
ops
->
lib
->
txq_free_tfd
(
il
,
txq
);
}
if
(
il_queue_space
(
q
)
>
q
->
low_mark
&&
(
txq_id
>=
0
)
&&
(
txq_id
!=
IWL39_CMD_QUEUE_NUM
)
&&
il
->
mac80211_registered
)
if
(
il_queue_space
(
q
)
>
q
->
low_mark
&&
txq_id
>=
0
&&
txq_id
!=
IWL39_CMD_QUEUE_NUM
&&
il
->
mac80211_registered
)
il_wake_queue
(
il
,
txq
);
}
...
...
@@ -316,7 +315,7 @@ static void il3945_rx_reply_tx(struct il_priv *il,
int
rate_idx
;
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 "
"is out of range [0-%d] %d %d
\n
"
,
txq_id
,
index
,
txq
->
q
.
n_bd
,
txq
->
q
.
write_ptr
,
...
...
@@ -544,8 +543,8 @@ static void il3945_rx_reply_rx(struct il_priv *il,
return
;
}
if
(
!
(
rx_end
->
status
&
RX_RES_STATUS_NO_CRC32_ERROR
)
||
!
(
rx_end
->
status
&
RX_RES_STATUS_NO_RXE_OVERFLOW
))
{
if
(
!
(
rx_end
->
status
&
RX_RES_STATUS_NO_CRC32_ERROR
)
||
!
(
rx_end
->
status
&
RX_RES_STATUS_NO_RXE_OVERFLOW
))
{
D_RX
(
"Bad CRC or FIFO: 0x%08X.
\n
"
,
rx_end
->
status
);
return
;
}
...
...
@@ -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
));
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
"
,
NUM_TFD_CHUNKS
);
return
-
EINVAL
;
...
...
@@ -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
)
{
return
(
(
temperature
<
-
260
)
||
(
temperature
>
25
)
)
?
1
:
0
;
return
(
temperature
<
-
260
||
temperature
>
25
)
?
1
:
0
;
}
int
il3945_hw_get_temperature
(
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
*
rxon2
=
&
ctx
->
active
;
if
(
(
rxon1
->
flags
==
rxon2
->
flags
)
&&
(
rxon1
->
filter_flags
==
rxon2
->
filter_flags
)
&&
(
rxon1
->
cck_basic_rates
==
rxon2
->
cck_basic_rates
)
&&
(
rxon1
->
ofdm_basic_rates
==
rxon2
->
ofdm_basic_rates
)
)
{
if
(
rxon1
->
flags
==
rxon2
->
flags
&&
rxon1
->
filter_flags
==
rxon2
->
filter_flags
&&
rxon1
->
cck_basic_rates
==
rxon2
->
cck_basic_rates
&&
rxon1
->
ofdm_basic_rates
==
rxon2
->
ofdm_basic_rates
)
{
D_INFO
(
"Using current RXON_ASSOC. Not resending.
\n
"
);
return
0
;
}
...
...
drivers/net/wireless/iwlegacy/iwl-4965-calib.c
View file @
232913b5
...
...
@@ -198,8 +198,8 @@ static int il4965_sens_energy_cck(struct il_priv *il,
data
->
num_in_cck_no_fa
);
/* If we got too many false alarms this time, reduce sensitivity */
if
(
(
false_alarms
>
max_false_alarms
)
&&
(
data
->
auto_corr_cck
>
AUTO_CORR_MAX_TH_CCK
)
)
{
if
(
false_alarms
>
max_false_alarms
&&
data
->
auto_corr_cck
>
AUTO_CORR_MAX_TH_CCK
)
{
D_CALIB
(
"norm FA %u > max FA %u
\n
"
,
false_alarms
,
max_false_alarms
);
D_CALIB
(
"... reducing sensitivity
\n
"
);
...
...
@@ -230,9 +230,9 @@ static int il4965_sens_energy_cck(struct il_priv *il,
* from a previous beacon with too many, or healthy # FAs
* OR 2) We've seen a lot of beacons (100) with too few
* false alarms */
if
(
(
data
->
nrg_prev_state
!=
IL_FA_TOO_MANY
)
&&
((
data
->
nrg_auto_corr_silence_diff
>
NRG_DIFF
)
||
(
data
->
num_in_cck_no_fa
>
MAX_NUMBER_CCK_NO_FA
)
))
{
if
(
data
->
nrg_prev_state
!=
IL_FA_TOO_MANY
&&
(
data
->
nrg_auto_corr_silence_diff
>
NRG_DIFF
||
data
->
num_in_cck_no_fa
>
MAX_NUMBER_CCK_NO_FA
))
{
D_CALIB
(
"... increasing sensitivity
\n
"
);
/* Increase nrg value to increase sensitivity */
...
...
@@ -289,9 +289,9 @@ static int il4965_sens_energy_cck(struct il_priv *il,
val
=
data
->
auto_corr_cck_mrc
+
AUTO_CORR_STEP_CCK
;
data
->
auto_corr_cck_mrc
=
min
((
u32
)
ranges
->
auto_corr_max_cck_mrc
,
val
);
}
else
if
(
(
false_alarms
<
min_false_alarms
)
&&
((
data
->
nrg_auto_corr_silence_diff
>
NRG_DIFF
)
||
(
data
->
num_in_cck_no_fa
>
MAX_NUMBER_CCK_NO_FA
)
))
{
}
else
if
(
false_alarms
<
min_false_alarms
&&
(
data
->
nrg_auto_corr_silence_diff
>
NRG_DIFF
||
data
->
num_in_cck_no_fa
>
MAX_NUMBER_CCK_NO_FA
))
{
/* Decrease auto_corr values to increase sensitivity */
val
=
data
->
auto_corr_cck
-
AUTO_CORR_STEP_CCK
;
...
...
@@ -747,9 +747,8 @@ static void il4965_gain_computation(struct il_priv *il,
for
(
i
=
default_chain
;
i
<
NUM_RX_CHAINS
;
i
++
)
{
s32
delta_g
=
0
;
if
(
!
(
data
->
disconn_array
[
i
])
&&
(
data
->
delta_gain_code
[
i
]
==
CHAIN_NOISE_DELTA_GAIN_INIT_VAL
))
{
if
(
!
data
->
disconn_array
[
i
]
&&
data
->
delta_gain_code
[
i
]
==
CHAIN_NOISE_DELTA_GAIN_INIT_VAL
)
{
delta_g
=
average_noise
[
i
]
-
min_average_noise
;
data
->
delta_gain_code
[
i
]
=
(
u8
)((
delta_g
*
10
)
/
15
);
data
->
delta_gain_code
[
i
]
=
...
...
@@ -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
* (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
"
,
rxon_chnum
,
rxon_band24
);
spin_unlock_irqrestore
(
&
il
->
lock
,
flags
);
...
...
@@ -920,8 +919,8 @@ void il4965_chain_noise_calibration(struct il_priv *il, void *stat_resp)
il
->
cfg
->
base_params
->
chain_noise_num_beacons
;
for
(
i
=
0
;
i
<
NUM_RX_CHAINS
;
i
++
)
{
if
(
!
(
data
->
disconn_array
[
i
])
&&
(
average_noise
[
i
]
<=
min_average_noise
)
)
{
if
(
!
data
->
disconn_array
[
i
]
&&
average_noise
[
i
]
<=
min_average_noise
)
{
/* This means that chain i is active and has
* lower noise values so far: */
min_average_noise
=
average_noise
[
i
];
...
...
drivers/net/wireless/iwlegacy/iwl-4965-hw.h
View file @
232913b5
...
...
@@ -102,8 +102,8 @@
static
inline
int
il4965_hw_valid_rtc_data_addr
(
u32
addr
)
{
return
(
addr
>=
IWL49_RTC_DATA_LOWER_BOUND
)
&&
(
addr
<
IWL49_RTC_DATA_UPPER_BOUND
);
return
(
addr
>=
IWL49_RTC_DATA_LOWER_BOUND
&&
addr
<
IWL49_RTC_DATA_UPPER_BOUND
);
}
/********************* START TEMPERATURE *************************************/
...
...
@@ -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_OUT_OF_RANGE(t) \
((
(t) < IL_TX_POWER_TEMPERATURE_MIN)
|| \
(
(t) > IL_TX_POWER_TEMPERATURE_MAX)
)
((
t) < IL_TX_POWER_TEMPERATURE_MIN
|| \
(
t) > IL_TX_POWER_TEMPERATURE_MAX
)
/********************* END TEMPERATURE ***************************************/
...
...
drivers/net/wireless/iwlegacy/iwl-4965-lib.c
View file @
232913b5
...
...
@@ -234,7 +234,7 @@ void il4965_rx_queue_restock(struct il_priv *il)
unsigned
long
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 */
rxb
=
rxq
->
queue
[
rxq
->
write
];
BUG_ON
(
rxb
&&
rxb
->
page
);
...
...
@@ -307,7 +307,7 @@ static void il4965_rx_allocate(struct il_priv *il, gfp_t priority)
"order: %d
\n
"
,
il
->
hw_params
.
rx_page_order
);
if
(
(
rxq
->
free_count
<=
RX_LOW_WATERMARK
)
&&
if
(
rxq
->
free_count
<=
RX_LOW_WATERMARK
&&
net_ratelimit
())
IL_ERR
(
"Failed to alloc_pages with %s. "
...
...
@@ -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
);
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
;
else
ctx
->
staging
.
rx_chain
&=
~
RXON_RX_CHAIN_MIMO_FORCE_MSK
;
...
...
drivers/net/wireless/iwlegacy/iwl-4965-rs.c
View file @
232913b5
This diff is collapsed.
Click to expand it.
drivers/net/wireless/iwlegacy/iwl-4965-tx.c
View file @
232913b5
...
...
@@ -195,8 +195,8 @@ static void il4965_tx_cmd_build_rate(struct il_priv *il,
* index is invalid.
*/
rate_idx
=
info
->
control
.
rates
[
0
].
idx
;
if
(
info
->
control
.
rates
[
0
].
flags
&
IEEE80211_TX_RC_MCS
||
(
rate_idx
<
0
)
||
(
rate_idx
>
IL_RATE_COUNT_LEGACY
)
)
if
(
(
info
->
control
.
rates
[
0
].
flags
&
IEEE80211_TX_RC_MCS
)
||
rate_idx
<
0
||
rate_idx
>
IL_RATE_COUNT_LEGACY
)
rate_idx
=
rate_lowest_index
(
&
il
->
bands
[
info
->
band
],
info
->
control
.
sta
);
/* 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,
rate_flags
=
0
;
/* 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
;
/* Set up antennas */
...
...
@@ -535,8 +535,7 @@ int il4965_tx_skb(struct il_priv *il, struct sk_buff *skb)
if
(
sta_priv
&&
sta_priv
->
client
&&
!
is_agg
)
atomic_inc
(
&
sta_priv
->
pending_frames
);
if
((
il_queue_space
(
q
)
<
q
->
high_mark
)
&&
il
->
mac80211_registered
)
{
if
(
il_queue_space
(
q
)
<
q
->
high_mark
&&
il
->
mac80211_registered
)
{
if
(
wait_write_ptr
)
{
spin_lock_irqsave
(
&
il
->
lock
,
flags
);
txq
->
need_update
=
1
;
...
...
@@ -1050,8 +1049,8 @@ int il4965_txq_check_empty(struct il_priv *il,
case
IL_EMPTYING_HW_QUEUE_DELBA
:
/* We are reclaiming the last packet of the */
/* aggregated HW queue */
if
(
(
txq_id
==
tid_data
->
agg
.
txq_id
)
&&
(
q
->
read_ptr
==
q
->
write_ptr
)
)
{
if
(
txq_id
==
tid_data
->
agg
.
txq_id
&&
q
->
read_ptr
==
q
->
write_ptr
)
{
u16
ssn
=
SEQ_TO_SN
(
tid_data
->
seq_number
);
int
tx_fifo
=
il4965_get_fifo_from_tid
(
ctx
,
tid
);
D_HT
(
...
...
@@ -1114,7 +1113,7 @@ int il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int index)
int
nfreed
=
0
;
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, "
"is out of range [0-%d] %d %d.
\n
"
,
txq_id
,
index
,
q
->
n_bd
,
q
->
write_ptr
,
q
->
read_ptr
);
...
...
@@ -1321,9 +1320,9 @@ void il4965_rx_reply_compressed_ba(struct il_priv *il,
int
freed
=
il4965_tx_queue_reclaim
(
il
,
scd_flow
,
index
);
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
&&
(
agg
->
state
!=
IL_EMPTYING_HW_QUEUE_DELBA
)
)
agg
->
state
!=
IL_EMPTYING_HW_QUEUE_DELBA
)
il_wake_queue
(
il
,
txq
);
il4965_txq_check_empty
(
il
,
sta_id
,
tid
,
scd_flow
);
...
...
drivers/net/wireless/iwlegacy/iwl-4965.c
View file @
232913b5
...
...
@@ -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
)
>>
RXON_FLG_CHANNEL_MODE_POS
;
return
(
(
chan_mod
==
CHANNEL_MODE_PURE_40
)
||
(
chan_mod
==
CHANNEL_MODE_MIXED
)
);
return
(
chan_mod
==
CHANNEL_MODE_PURE_40
||
chan_mod
==
CHANNEL_MODE_MIXED
);
}
static
void
il4965_nic_config
(
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
);
if
(
(
data
->
state
==
IL_CHAIN_NOISE_ALIVE
)
&&
if
(
data
->
state
==
IL_CHAIN_NOISE_ALIVE
&&
il_is_any_associated
(
il
))
{
struct
il_calib_diff_gain_cmd
cmd
;
...
...
@@ -458,8 +458,8 @@ static s32 il4965_get_voltage_compensation(s32 eeprom_voltage,
{
s32
comp
=
0
;
if
(
(
TX_POWER_IL_ILLEGAL_VOLTAGE
==
eeprom_voltage
)
||
(
TX_POWER_IL_ILLEGAL_VOLTAGE
==
current_voltage
)
)
if
(
TX_POWER_IL_ILLEGAL_VOLTAGE
==
eeprom_voltage
||
TX_POWER_IL_ILLEGAL_VOLTAGE
==
current_voltage
)
return
0
;
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)
if
(
il
->
calib_info
->
band_info
[
b
].
ch_from
==
0
)
continue
;
if
(
(
channel
>=
il
->
calib_info
->
band_info
[
b
].
ch_from
)
&&
(
channel
<=
il
->
calib_info
->
band_info
[
b
].
ch_to
)
)
if
(
channel
>=
il
->
calib_info
->
band_info
[
b
].
ch_from
&&
channel
<=
il
->
calib_info
->
band_info
[
b
].
ch_to
)
break
;
}
...
...
@@ -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
*
rxon2
=
&
ctx
->
active
;
if
(
(
rxon1
->
flags
==
rxon2
->
flags
)
&&
(
rxon1
->
filter_flags
==
rxon2
->
filter_flags
)
&&
(
rxon1
->
cck_basic_rates
==
rxon2
->
cck_basic_rates
)
&&
(
rxon1
->
ofdm_ht_single_stream_basic_rates
==
rxon2
->
ofdm_ht_single_stream_basic_rates
)
&&
(
rxon1
->
ofdm_ht_dual_stream_basic_rates
==
rxon2
->
ofdm_ht_dual_stream_basic_rates
)
&&
(
rxon1
->
rx_chain
==
rxon2
->
rx_chain
)
&&
(
rxon1
->
ofdm_basic_rates
==
rxon2
->
ofdm_basic_rates
)
)
{
if
(
rxon1
->
flags
==
rxon2
->
flags
&&
rxon1
->
filter_flags
==
rxon2
->
filter_flags
&&
rxon1
->
cck_basic_rates
==
rxon2
->
cck_basic_rates
&&
rxon1
->
ofdm_ht_single_stream_basic_rates
==
rxon2
->
ofdm_ht_single_stream_basic_rates
&&
rxon1
->
ofdm_ht_dual_stream_basic_rates
==
rxon2
->
ofdm_ht_dual_stream_basic_rates
&&
rxon1
->
rx_chain
==
rxon2
->
rx_chain
&&
rxon1
->
ofdm_basic_rates
==
rxon2
->
ofdm_basic_rates
)
{
D_INFO
(
"Using current RXON_ASSOC. Not resending.
\n
"
);
return
0
;
}
...
...
@@ -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
*/
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
"
,
le16_to_cpu
(
il
->
switch_channel
));
il_chswitch_done
(
il
,
false
);
...
...
@@ -1366,7 +1366,7 @@ static int il4965_hw_channel_switch(struct il_priv *il,
* calculate the ucode channel switch time
* 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
)
/
beacon_interval
))
{
switch_count
-=
(
il
->
ucode_beacon_time
-
...
...
@@ -1789,7 +1789,7 @@ static void il4965_rx_reply_tx(struct il_priv *il,
u8
*
qc
=
NULL
;
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 "
"is out of range [0-%d] %d %d
\n
"
,
txq_id
,
index
,
txq
->
q
.
n_bd
,
txq
->
q
.
write_ptr
,
...
...
@@ -1838,8 +1838,8 @@ static void il4965_rx_reply_tx(struct il_priv *il,
tid
,
freed
);
if
(
il
->
mac80211_registered
&&
(
il_queue_space
(
&
txq
->
q
)
>
txq
->
q
.
low_mark
)
&&
(
agg
->
state
!=
IL_EMPTYING_HW_QUEUE_DELBA
)
)
il_queue_space
(
&
txq
->
q
)
>
txq
->
q
.
low_mark
&&
agg
->
state
!=
IL_EMPTYING_HW_QUEUE_DELBA
)
il_wake_queue
(
il
,
txq
);
}
}
else
{
...
...
@@ -1863,7 +1863,7 @@ static void il4965_rx_reply_tx(struct il_priv *il,
D_TX_REPLY
(
"Station not known
\n
"
);
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
);
}
if
(
qc
&&
likely
(
sta_id
!=
IL_INVALID_STATION
))
...
...
drivers/net/wireless/iwlegacy/iwl-4965.h
View file @
232913b5
...
...
@@ -163,8 +163,8 @@ static inline u32 il4965_tx_status_to_mac80211(u32 status)
static
inline
bool
il4965_is_tx_success
(
u32
status
)
{
status
&=
TX_STATUS_MSK
;
return
(
status
==
TX_STATUS_SUCCESS
)
||
(
status
==
TX_STATUS_DIRECT_DONE
);
return
(
status
==
TX_STATUS_SUCCESS
||
status
==
TX_STATUS_DIRECT_DONE
);
}
u8
il4965_toggle_tx_ant
(
struct
il_priv
*
il
,
u8
ant_idx
,
u8
valid
);
...
...
drivers/net/wireless/iwlegacy/iwl-core.c
View file @
232913b5
...
...
@@ -251,8 +251,8 @@ int il_init_geos(struct il_priv *il)
il
->
tx_power_user_lmt
=
max_tx_power
;
il
->
tx_power_next
=
max_tx_power
;
if
(
(
il
->
bands
[
IEEE80211_BAND_5GHZ
].
n_channels
==
0
)
&&
il
->
cfg
->
sku
&
IL_SKU_A
)
{
if
(
il
->
bands
[
IEEE80211_BAND_5GHZ
].
n_channels
==
0
&&
(
il
->
cfg
->
sku
&
IL_SKU_A
)
)
{
IL_INFO
(
"Incorrectly detected BG card as ABG. "
"Please send your PCI ID 0x%04X:0x%04X to maintainer.
\n
"
,
il
->
pci_dev
->
device
,
...
...
@@ -708,8 +708,7 @@ il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch,
enum
ieee80211_band
band
=
ch
->
band
;
u16
channel
=
ch
->
hw_value
;
if
((
le16_to_cpu
(
ctx
->
staging
.
channel
)
==
channel
)
&&
(
il
->
band
==
band
))
if
(
le16_to_cpu
(
ctx
->
staging
.
channel
)
==
channel
&&
il
->
band
==
band
)
return
0
;
ctx
->
staging
.
channel
=
cpu_to_le16
(
channel
);
...
...
@@ -2306,8 +2305,8 @@ static void il_ht_conf(struct il_priv *il,
>>
IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT
;
maxstreams
+=
1
;
if
(
(
ht_cap
->
mcs
.
rx_mask
[
1
]
==
0
)
&&
(
ht_cap
->
mcs
.
rx_mask
[
2
]
==
0
)
)
if
(
ht_cap
->
mcs
.
rx_mask
[
1
]
==
0
&&
ht_cap
->
mcs
.
rx_mask
[
2
]
==
0
)
ht_conf
->
single_chain_sufficient
=
true
;
if
(
maxstreams
<=
1
)
ht_conf
->
single_chain_sufficient
=
true
;
...
...
@@ -2467,7 +2466,7 @@ void il_mac_bss_info_changed(struct ieee80211_hw *hw,
* mac80211 decides to do both changes at once because
* 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
);
if
(
changes
&
BSS_CHANGED_ERP_PREAMBLE
)
{
...
...
@@ -2482,8 +2481,7 @@ void il_mac_bss_info_changed(struct ieee80211_hw *hw,
if
(
changes
&
BSS_CHANGED_ERP_CTS_PROT
)
{
D_MAC80211
(
"ERP_CTS %d
\n
"
,
bss_conf
->
use_cts_prot
);
if
(
bss_conf
->
use_cts_prot
&&
(
il
->
band
!=
IEEE80211_BAND_5GHZ
))
if
(
bss_conf
->
use_cts_prot
&&
il
->
band
!=
IEEE80211_BAND_5GHZ
)
ctx
->
staging
.
flags
|=
RXON_FLG_TGG_PROTECT_MSK
;
else
ctx
->
staging
.
flags
&=
~
RXON_FLG_TGG_PROTECT_MSK
;
...
...
@@ -2596,7 +2594,7 @@ irqreturn_t il_isr(int irq, void *data)
goto
none
;
}
if
(
(
inta
==
0xFFFFFFFF
)
||
((
inta
&
0xFFFFFFF0
)
==
0xa5a5a5a0
)
)
{
if
(
inta
==
0xFFFFFFFF
||
(
inta
&
0xFFFFFFF0
)
==
0xa5a5a5a0
)
{
/* Hardware disappeared. It might have already raised
* an interrupt */
IL_WARN
(
"HARDWARE GONE?? INTA == 0x%08x
\n
"
,
inta
);
...
...
drivers/net/wireless/iwlegacy/iwl-io.h
View file @
232913b5
...
...
@@ -176,7 +176,7 @@ static inline void il_write_reg_buf(struct il_priv *il,
{
u32
count
=
sizeof
(
u32
);
if
(
(
il
!=
NULL
)
&&
(
values
!=
NULL
)
)
{
if
(
il
!=
NULL
&&
values
!=
NULL
)
{
for
(;
0
<
len
;
len
-=
count
,
reg
+=
count
,
values
++
)
il_wr
(
il
,
reg
,
*
values
);
}
...
...
drivers/net/wireless/iwlegacy/iwl-legacy-rs.h
View file @
232913b5
...
...
@@ -279,7 +279,7 @@ enum il_table_type {
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_mimo2(tbl) ((tbl) == LQ_MIMO2)
#define is_mimo(tbl) (is_mimo2(tbl))
...
...
drivers/net/wireless/iwlegacy/iwl-scan.c
View file @
232913b5
...
...
@@ -307,7 +307,7 @@ u16 il_get_passive_dwell_time(struct il_priv *il,
if
(
!
il_is_associated_ctx
(
ctx
))
continue
;
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
=
(
value
*
98
)
/
100
-
IL_CHANNEL_TUNE_TIME
*
2
;
passive
=
min
(
value
,
passive
);
...
...
drivers/net/wireless/iwlegacy/iwl-sta.c
View file @
232913b5
drivers/net/wireless/iwlegacy/iwl-tx.c
View file @
232913b5
...
...
@@ -565,7 +565,7 @@ static void il_hcmd_queue_reclaim(struct il_priv *il, int txq_id,
struct
il_queue
*
q
=
&
txq
->
q
;
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, "
"is out of range [0-%d] %d %d.
\n
"
,
txq_id
,
idx
,
q
->
n_bd
,
q
->
write_ptr
,
q
->
read_ptr
);
...
...
drivers/net/wireless/iwlegacy/iwl3945-base.c
View file @
232913b5
...
...
@@ -646,7 +646,7 @@ static int il3945_tx_skb(struct il_priv *il, struct sk_buff *skb)
il_txq_update_write_ptr
(
il
,
txq
);
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
)
{
if
(
wait_write_ptr
)
{
spin_lock_irqsave
(
&
il
->
lock
,
flags
);
...
...
@@ -974,7 +974,7 @@ static void il3945_rx_queue_restock(struct il_priv *il)
spin_lock_irqsave
(
&
rxq
->
lock
,
flags
);
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 */
element
=
rxq
->
rx_free
.
next
;
rxb
=
list_entry
(
element
,
struct
il_rx_mem_buffer
,
list
);
...
...
@@ -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.
* Increment device's write pointer in multiples of 8. */
if
(
(
rxq
->
write_actual
!=
(
rxq
->
write
&
~
0x7
))
||
(
abs
(
rxq
->
write
-
rxq
->
read
)
>
7
)
)
{
if
(
rxq
->
write_actual
!=
(
rxq
->
write
&
~
0x7
)
||
abs
(
rxq
->
write
-
rxq
->
read
)
>
7
)
{
spin_lock_irqsave
(
&
rxq
->
lock
,
flags
);
rxq
->
need_update
=
1
;
spin_unlock_irqrestore
(
&
rxq
->
lock
,
flags
);
...
...
@@ -1041,7 +1041,7 @@ static void il3945_rx_allocate(struct il_priv *il, gfp_t priority)
if
(
!
page
)
{
if
(
net_ratelimit
())
D_INFO
(
"Failed to allocate SKB buffer.
\n
"
);
if
(
(
rxq
->
free_count
<=
RX_LOW_WATERMARK
)
&&
if
(
rxq
->
free_count
<=
RX_LOW_WATERMARK
&&
net_ratelimit
())
IL_ERR
(
"Failed to allocate SKB buffer with %s. Only %u free buffers remaining.
\n
"
,
priority
==
GFP_ATOMIC
?
"GFP_ATOMIC"
:
"GFP_KERNEL"
,
...
...
@@ -1254,8 +1254,8 @@ static void il3945_rx_handle(struct il_priv *il)
* Ucode should set SEQ_RX_FRAME bit if ucode-originated,
* but apparently a few don't get set; catch them here. */
reclaim
=
!
(
pkt
->
hdr
.
sequence
&
SEQ_RX_FRAME
)
&&
(
pkt
->
hdr
.
cmd
!=
STATISTICS_NOTIFICATION
)
&&
(
pkt
->
hdr
.
cmd
!=
REPLY_TX
)
;
pkt
->
hdr
.
cmd
!=
STATISTICS_NOTIFICATION
&&
pkt
->
hdr
.
cmd
!=
REPLY_TX
;
/* Based on type of command response or notification,
* handle those that need handling via function in
...
...
@@ -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_short
=
i
;
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.
*/
...
...
@@ -3294,7 +3294,7 @@ static ssize_t il3945_show_measurement(struct device *d,
il
->
measurement_status
=
0
;
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
,
PAGE_SIZE
-
len
,
1
);
len
=
strlen
(
buf
);
...
...
@@ -3406,7 +3406,7 @@ static ssize_t il3945_store_antenna(struct device *d,
return
count
;
}
if
(
(
ant
>=
0
)
&&
(
ant
<=
2
)
)
{
if
(
ant
>=
0
&&
ant
<=
2
)
{
D_INFO
(
"Setting antenna select to %d.
\n
"
,
ant
);
il3945_mod_params
.
antenna
=
(
enum
il3945_antenna
)
ant
;
}
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment