Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
53f87022
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
53f87022
编写于
12月 14, 2009
作者:
M
Mauro Carvalho Chehab
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
V4L/DVB (13635): ir-core: Implement protocol table type reading
Signed-off-by:
N
Mauro Carvalho Chehab
<
mchehab@redhat.com
>
上级
e93854da
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
31 addition
and
3 deletion
+31
-3
drivers/media/IR/ir-sysfs.c
drivers/media/IR/ir-sysfs.c
+28
-2
include/media/ir-core.h
include/media/ir-core.h
+3
-1
未找到文件。
drivers/media/IR/ir-sysfs.c
浏览文件 @
53f87022
...
...
@@ -22,10 +22,36 @@ unsigned long ir_core_dev_number;
static
struct
class
*
ir_input_class
;
static
DEVICE_ATTR
(
ir_protocol
,
S_IRUGO
|
S_IWUSR
,
NULL
,
NULL
);
static
ssize_t
show_protocol
(
struct
device
*
d
,
struct
device_attribute
*
mattr
,
char
*
buf
)
{
char
*
s
;
struct
ir_input_dev
*
ir_dev
=
dev_get_drvdata
(
d
);
enum
ir_type
ir_type
=
ir_dev
->
rc_tab
.
ir_type
;
IR_dprintk
(
1
,
"Current protocol is %ld
\n
"
,
ir_type
);
/* FIXME: doesn't support multiple protocols at the same time */
if
(
ir_type
==
IR_TYPE_UNKNOWN
)
s
=
"Unknown"
;
else
if
(
ir_type
==
IR_TYPE_RC5
)
s
=
"RC-5"
;
else
if
(
ir_type
==
IR_TYPE_PD
)
s
=
"Pulse/distance"
;
else
if
(
ir_type
==
IR_TYPE_NEC
)
s
=
"NEC"
;
else
s
=
"Other"
;
return
sprintf
(
buf
,
"%s
\n
"
,
s
);
}
static
DEVICE_ATTR
(
current_protocol
,
S_IRUGO
|
S_IWUSR
,
show_protocol
,
NULL
);
static
struct
attribute
*
ir_dev_attrs
[]
=
{
&
dev_attr_
ir
_protocol
.
attr
,
&
dev_attr_
current
_protocol
.
attr
,
};
int
ir_register_class
(
struct
input_dev
*
input_dev
)
...
...
include/media/ir-core.h
浏览文件 @
53f87022
...
...
@@ -44,9 +44,10 @@ struct ir_scancode_table {
struct
ir_dev_props
{
unsigned
long
allowed_protos
;
void
*
priv
;
int
(
*
change_protocol
)(
void
*
priv
,
unsigned
long
protocol
);
int
(
*
change_protocol
)(
void
*
priv
,
enum
ir_type
ir_type
);
};
struct
ir_input_dev
{
struct
input_dev
*
dev
;
/* Input device*/
struct
ir_scancode_table
rc_tab
;
/* scan/key table */
...
...
@@ -55,6 +56,7 @@ struct ir_input_dev {
struct
device
*
class_dev
;
/* virtual class dev */
const
struct
ir_dev_props
*
props
;
/* Device properties */
};
#define to_ir_input_dev(_attr) container_of(_attr, struct ir_input_dev, attr)
/* Routines from ir-keytable.c */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录