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
6278ddab
Commit
6278ddab
authored
Aug 31, 2011
by
Stanislaw Gruszka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iwlegacy: remove il_ieee80211_get_hw_conf
Signed-off-by:
Stanislaw Gruszka
<
sgruszka@redhat.com
>
parent
d4459a99
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
9 deletions
+3
-9
drivers/net/wireless/iwlegacy/3945-mac.c
drivers/net/wireless/iwlegacy/3945-mac.c
+1
-1
drivers/net/wireless/iwlegacy/4965.c
drivers/net/wireless/iwlegacy/4965.c
+1
-1
drivers/net/wireless/iwlegacy/common.c
drivers/net/wireless/iwlegacy/common.c
+1
-1
drivers/net/wireless/iwlegacy/iwl-helpers.h
drivers/net/wireless/iwlegacy/iwl-helpers.h
+0
-6
No files found.
drivers/net/wireless/iwlegacy/3945-mac.c
View file @
6278ddab
...
...
@@ -2759,7 +2759,7 @@ void il3945_post_associate(struct il_priv *il)
il_scan_cancel_timeout
(
il
,
200
);
conf
=
il_ieee80211_get_hw_conf
(
il
->
hw
)
;
conf
=
&
il
->
hw
->
conf
;
ctx
->
staging
.
filter_flags
&=
~
RXON_FILTER_ASSOC_MSK
;
il3945_commit_rxon
(
il
,
ctx
);
...
...
drivers/net/wireless/iwlegacy/4965.c
View file @
6278ddab
...
...
@@ -2184,7 +2184,7 @@ static void il4965_post_associate(struct il_priv *il)
il_scan_cancel_timeout
(
il
,
200
);
conf
=
il_ieee80211_get_hw_conf
(
il
->
hw
)
;
conf
=
&
il
->
hw
->
conf
;
ctx
->
staging
.
filter_flags
&=
~
RXON_FILTER_ASSOC_MSK
;
il_commit_rxon
(
il
,
ctx
);
...
...
drivers/net/wireless/iwlegacy/common.c
View file @
6278ddab
...
...
@@ -3514,7 +3514,7 @@ il_send_rxon_timing(struct il_priv *il, struct il_rxon_context *ctx)
u16
beacon_int
;
struct
ieee80211_vif
*
vif
=
ctx
->
vif
;
conf
=
il_ieee80211_get_hw_conf
(
il
->
hw
)
;
conf
=
&
il
->
hw
->
conf
;
lockdep_assert_held
(
&
il
->
mutex
);
...
...
drivers/net/wireless/iwlegacy/iwl-helpers.h
View file @
6278ddab
...
...
@@ -38,12 +38,6 @@
#define IL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo))))
static
inline
struct
ieee80211_conf
*
il_ieee80211_get_hw_conf
(
struct
ieee80211_hw
*
hw
)
{
return
&
hw
->
conf
;
}
/**
* il_queue_inc_wrap - increment queue idx, wrap back to beginning
* @idx -- current idx
...
...
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