Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
95b14fb2
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
14
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
95b14fb2
编写于
3月 03, 2009
作者:
M
Mauro Carvalho Chehab
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
V4L/DVB (10953): cx25840: Fix CodingStyle errors introduced by the last patch
Signed-off-by:
N
Mauro Carvalho Chehab
<
mchehab@redhat.com
>
上级
149783b5
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
63 addition
and
73 deletion
+63
-73
drivers/media/video/cx25840/cx25840-audio.c
drivers/media/video/cx25840/cx25840-audio.c
+18
-24
drivers/media/video/cx25840/cx25840-core.c
drivers/media/video/cx25840/cx25840-core.c
+38
-42
drivers/media/video/cx25840/cx25840-firmware.c
drivers/media/video/cx25840/cx25840-firmware.c
+7
-7
未找到文件。
drivers/media/video/cx25840/cx25840-audio.c
浏览文件 @
95b14fb2
...
...
@@ -45,7 +45,6 @@ static int set_audclk_freq(struct i2c_client *client, u32 freq)
}
if
(
!
state
->
is_cx231xx
)
{
/* VID_PLL and AUX_PLL */
cx25840_write4
(
client
,
0x108
,
0x1006040f
);
...
...
@@ -70,7 +69,6 @@ static int set_audclk_freq(struct i2c_client *client, u32 freq)
}
if
(
!
state
->
is_cx231xx
)
{
/* VID_PLL and AUX_PLL */
cx25840_write4
(
client
,
0x108
,
0x1009040f
);
...
...
@@ -95,7 +93,6 @@ static int set_audclk_freq(struct i2c_client *client, u32 freq)
}
if
(
!
state
->
is_cx231xx
)
{
/* VID_PLL and AUX_PLL */
cx25840_write4
(
client
,
0x108
,
0x100a040f
);
...
...
@@ -122,7 +119,6 @@ static int set_audclk_freq(struct i2c_client *client, u32 freq)
}
if
(
!
state
->
is_cx231xx
)
{
/* VID_PLL and AUX_PLL */
cx25840_write4
(
client
,
0x108
,
0x1e08040f
);
...
...
@@ -154,7 +150,6 @@ static int set_audclk_freq(struct i2c_client *client, u32 freq)
if
(
!
state
->
is_cx231xx
)
{
/* VID_PLL and AUX_PLL */
cx25840_write4
(
client
,
0x108
,
0x1809040f
);
...
...
@@ -247,10 +242,9 @@ void cx25840_audio_set_path(struct i2c_client *client)
/* deassert soft reset */
cx25840_and_or
(
client
,
0x810
,
~
0x1
,
0x00
);
if
(
state
->
is_cx23885
||
state
->
is_cx231xx
)
{
/* Ensure the controller is running when we exit */
if
(
state
->
is_cx23885
||
state
->
is_cx231xx
)
cx25840_and_or
(
client
,
0x803
,
~
0x10
,
0x10
);
}
}
static
int
get_volume
(
struct
i2c_client
*
client
)
...
...
drivers/media/video/cx25840/cx25840-core.c
浏览文件 @
95b14fb2
...
...
@@ -374,15 +374,12 @@ static void cx231xx_initialize(struct i2c_client *client)
/* DIF Src phase inc */
cx25840_write4
(
client
,
0x340
,
0x0df7df83
);
/* Luma */
cx25840_write4
(
client
,
0x414
,
0x00107d12
);
/* Chroma */
cx25840_write4
(
client
,
0x420
,
0x3d008282
);
/* ADC2 input select */
cx25840_write
(
client
,
0x102
,
0x10
);
...
...
@@ -395,7 +392,6 @@ static void cx231xx_initialize(struct i2c_client *client)
/* White crush, Chroma AGC & Chroma Killer enabled */
cx25840_write
(
client
,
0x401
,
0xe8
);
/* Do the firmware load in a work handler to prevent.
Otherwise the kernel is blocked waiting for the
bit-banging i2c interface to finish uploading the
...
...
@@ -1567,7 +1563,7 @@ static int cx25840_probe(struct i2c_client *client,
state
->
c
=
client
;
state
->
is_cx25836
=
((
device_id
&
0xff00
)
==
0x8300
);
state
->
is_cx23885
=
(
device_id
==
0x0000
)
||
(
device_id
==
0x1313
);
state
->
is_cx231xx
=
(
device_id
==
0x5A3E
);
state
->
is_cx231xx
=
(
device_id
==
0x5a3e
);
state
->
vid_input
=
CX25840_COMPOSITE7
;
state
->
aud_input
=
CX25840_AUDIO8
;
state
->
audclk_freq
=
48000
;
...
...
drivers/media/video/cx25840/cx25840-firmware.c
浏览文件 @
95b14fb2
...
...
@@ -101,11 +101,11 @@ int cx25840_loadfw(struct i2c_client *client)
if
(
state
->
is_cx23885
)
firmware
=
FWFILE_CX23885
;
else
if
(
state
->
is_cx231xx
)
else
if
(
state
->
is_cx231xx
)
firmware
=
FWFILE_CX231XX
;
if
(
(
state
->
is_cx231xx
)
&&
MAX_BUF_SIZE
>
16
)
{
printk
(
" Firmware download size changed to 16 bytes max length
\n
"
);
if
(
(
state
->
is_cx231xx
)
&&
MAX_BUF_SIZE
>
16
)
{
v4l_err
(
client
,
" Firmware download size changed to 16 bytes max length
\n
"
);
MAX_BUF_SIZE
=
16
;
/* cx231xx cannot accept more than 16 bytes at a time */
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录