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
53c52513
Commit
53c52513
authored
Nov 26, 2012
by
John W. Linville
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-john' of
git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-fixes
parents
400e0208
5edd0b94
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
drivers/net/wireless/iwlwifi/dvm/rxon.c
drivers/net/wireless/iwlwifi/dvm/rxon.c
+6
-6
No files found.
drivers/net/wireless/iwlwifi/dvm/rxon.c
View file @
53c52513
...
@@ -1012,12 +1012,12 @@ static void iwl_calc_basic_rates(struct iwl_priv *priv,
...
@@ -1012,12 +1012,12 @@ static void iwl_calc_basic_rates(struct iwl_priv *priv,
* As a consequence, it's not as complicated as it sounds, just add
* As a consequence, it's not as complicated as it sounds, just add
* any lower rates to the ACK rate bitmap.
* any lower rates to the ACK rate bitmap.
*/
*/
if
(
IWL_RATE_11M_INDEX
<
lowest_present_
ofdm
)
if
(
IWL_RATE_11M_INDEX
<
lowest_present_
cck
)
ofdm
|=
IWL_RATE_11M_MASK
>>
IWL_FIRST_CCK_RATE
;
cck
|=
IWL_RATE_11M_MASK
>>
IWL_FIRST_CCK_RATE
;
if
(
IWL_RATE_5M_INDEX
<
lowest_present_
ofdm
)
if
(
IWL_RATE_5M_INDEX
<
lowest_present_
cck
)
ofdm
|=
IWL_RATE_5M_MASK
>>
IWL_FIRST_CCK_RATE
;
cck
|=
IWL_RATE_5M_MASK
>>
IWL_FIRST_CCK_RATE
;
if
(
IWL_RATE_2M_INDEX
<
lowest_present_
ofdm
)
if
(
IWL_RATE_2M_INDEX
<
lowest_present_
cck
)
ofdm
|=
IWL_RATE_2M_MASK
>>
IWL_FIRST_CCK_RATE
;
cck
|=
IWL_RATE_2M_MASK
>>
IWL_FIRST_CCK_RATE
;
/* 1M already there or needed so always add */
/* 1M already there or needed so always add */
cck
|=
IWL_RATE_1M_MASK
>>
IWL_FIRST_CCK_RATE
;
cck
|=
IWL_RATE_1M_MASK
>>
IWL_FIRST_CCK_RATE
;
...
...
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