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
a4881cc4
Commit
a4881cc4
authored
Aug 23, 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
6de3f7e9
aba4e6ff
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
1 deletion
+46
-1
include/linux/rfkill.h
include/linux/rfkill.h
+31
-0
net/mac80211/cfg.c
net/mac80211/cfg.c
+1
-1
net/rfkill/core.c
net/rfkill/core.c
+14
-0
No files found.
include/linux/rfkill.h
View file @
a4881cc4
...
...
@@ -354,6 +354,37 @@ static inline bool rfkill_blocked(struct rfkill *rfkill)
}
#endif
/* RFKILL || RFKILL_MODULE */
#ifdef CONFIG_RFKILL_LEDS
/**
* rfkill_get_led_trigger_name - Get the LED trigger name for the button's LED.
* This function might return a NULL pointer if registering of the
* LED trigger failed. Use this as "default_trigger" for the LED.
*/
const
char
*
rfkill_get_led_trigger_name
(
struct
rfkill
*
rfkill
);
/**
* rfkill_set_led_trigger_name -- set the LED trigger name
* @rfkill: rfkill struct
* @name: LED trigger name
*
* This function sets the LED trigger name of the radio LED
* trigger that rfkill creates. It is optional, but if called
* must be called before rfkill_register() to be effective.
*/
void
rfkill_set_led_trigger_name
(
struct
rfkill
*
rfkill
,
const
char
*
name
);
#else
static
inline
const
char
*
rfkill_get_led_trigger_name
(
struct
rfkill
*
rfkill
)
{
return
NULL
;
}
static
inline
void
rfkill_set_led_trigger_name
(
struct
rfkill
*
rfkill
,
const
char
*
name
)
{
}
#endif
#endif
/* __KERNEL__ */
#endif
/* RFKILL_H */
net/mac80211/cfg.c
View file @
a4881cc4
...
...
@@ -740,7 +740,7 @@ static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
struct
probe_resp
*
new
,
*
old
;
if
(
!
resp
||
!
resp_len
)
return
-
EINVAL
;
return
1
;
old
=
rtnl_dereference
(
sdata
->
u
.
ap
.
probe_resp
);
...
...
net/rfkill/core.c
View file @
a4881cc4
...
...
@@ -150,6 +150,20 @@ static void rfkill_led_trigger_activate(struct led_classdev *led)
rfkill_led_trigger_event
(
rfkill
);
}
const
char
*
rfkill_get_led_trigger_name
(
struct
rfkill
*
rfkill
)
{
return
rfkill
->
led_trigger
.
name
;
}
EXPORT_SYMBOL
(
rfkill_get_led_trigger_name
);
void
rfkill_set_led_trigger_name
(
struct
rfkill
*
rfkill
,
const
char
*
name
)
{
BUG_ON
(
!
rfkill
);
rfkill
->
ledtrigname
=
name
;
}
EXPORT_SYMBOL
(
rfkill_set_led_trigger_name
);
static
int
rfkill_led_trigger_register
(
struct
rfkill
*
rfkill
)
{
rfkill
->
led_trigger
.
name
=
rfkill
->
ledtrigname
...
...
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