Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
bc974305
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看板
提交
bc974305
编写于
12月 22, 2008
作者:
M
Mauro Carvalho Chehab
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
V4L/DVB (9969): tvp5150: add support for VIDIOC_G_CHIP_IDENT ioctl
Signed-off-by:
N
Mauro Carvalho Chehab
<
mchehab@redhat.com
>
上级
b3ee7e21
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
19 addition
and
0 deletion
+19
-0
drivers/media/video/tvp5150.c
drivers/media/video/tvp5150.c
+16
-0
include/media/v4l2-chip-ident.h
include/media/v4l2-chip-ident.h
+3
-0
未找到文件。
drivers/media/video/tvp5150.c
浏览文件 @
bc974305
...
...
@@ -12,6 +12,7 @@
#include <media/v4l2-device.h>
#include <media/tvp5150.h>
#include <media/v4l2-i2c-drv-legacy.h>
#include <media/v4l2-chip-ident.h>
#include "tvp5150_reg.h"
...
...
@@ -961,6 +962,20 @@ static int tvp5150_g_fmt(struct v4l2_subdev *sd, struct v4l2_format *fmt)
}
static
int
tvp5150_g_chip_ident
(
struct
v4l2_subdev
*
sd
,
struct
v4l2_chip_ident
*
chip
)
{
int
rev
;
struct
i2c_client
*
client
=
v4l2_get_subdevdata
(
sd
);
rev
=
tvp5150_read
(
sd
,
TVP5150_ROM_MAJOR_VER
)
<<
8
|
tvp5150_read
(
sd
,
TVP5150_ROM_MINOR_VER
);
return
v4l2_chip_ident_i2c_client
(
client
,
chip
,
V4L2_IDENT_TVP5150
,
rev
);
}
#ifdef CONFIG_VIDEO_ADV_DEBUG
static
int
tvp5150_g_register
(
struct
v4l2_subdev
*
sd
,
struct
v4l2_register
*
reg
)
{
...
...
@@ -1026,6 +1041,7 @@ static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
.
s_ctrl
=
tvp5150_s_ctrl
,
.
queryctrl
=
tvp5150_queryctrl
,
.
reset
=
tvp5150_reset
,
.
g_chip_ident
=
tvp5150_g_chip_ident
,
#ifdef CONFIG_VIDEO_ADV_DEBUG
.
g_register
=
tvp5150_g_register
,
.
s_register
=
tvp5150_s_register
,
...
...
include/media/v4l2-chip-ident.h
浏览文件 @
bc974305
...
...
@@ -70,6 +70,9 @@ enum {
/* module vp27smpx: just ident 2700 */
V4L2_IDENT_VP27SMPX
=
2700
,
/* module tvp5150 */
V4L2_IDENT_TVP5150
=
5150
,
/* module cs5345: just ident 5345 */
V4L2_IDENT_CS5345
=
5345
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录