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
3e497e02
Commit
3e497e02
authored
Jul 19, 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/jberg/mac80211-next
parents
0cd06647
99102bd3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
net/mac80211/cfg.c
net/mac80211/cfg.c
+1
-0
net/wireless/reg.c
net/wireless/reg.c
+3
-1
No files found.
net/mac80211/cfg.c
View file @
3e497e02
...
...
@@ -917,6 +917,7 @@ static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
kfree_rcu
(
old
,
rcu_head
);
sta_info_flush
(
sdata
->
local
,
sdata
);
ieee80211_bss_info_change_notify
(
sdata
,
BSS_CHANGED_BEACON_ENABLED
);
return
0
;
...
...
net/wireless/reg.c
View file @
3e497e02
...
...
@@ -929,11 +929,13 @@ static bool reg_request_cell_base(struct regulatory_request *request)
bool
reg_last_request_cell_base
(
void
)
{
bool
val
;
assert_cfg80211_lock
();
mutex_lock
(
&
reg_mutex
);
return
reg_request_cell_base
(
last_request
);
val
=
reg_request_cell_base
(
last_request
);
mutex_unlock
(
&
reg_mutex
);
return
val
;
}
#ifdef CONFIG_CFG80211_CERTIFICATION_ONUS
...
...
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