Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
a4881cc4
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a4881cc4
编写于
8月 23, 2012
作者:
J
John W. Linville
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-john' of
git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next
上级
6de3f7e9
aba4e6ff
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
46 addition
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
未找到文件。
include/linux/rfkill.h
浏览文件 @
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
浏览文件 @
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
浏览文件 @
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
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录