Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
155ec9e6
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
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看板
提交
155ec9e6
编写于
3月 08, 2006
作者:
M
Mauro Carvalho Chehab
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'work-fixes'
上级
8e2cc1af
8a59822f
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
12 addition
and
9 deletion
+12
-9
drivers/media/dvb/dvb-core/demux.h
drivers/media/dvb/dvb-core/demux.h
+1
-1
drivers/media/dvb/dvb-usb/dvb-usb-init.c
drivers/media/dvb/dvb-usb/dvb-usb-init.c
+1
-1
drivers/media/dvb/dvb-usb/dvb-usb.h
drivers/media/dvb/dvb-usb/dvb-usb.h
+1
-1
drivers/media/dvb/ttpci/av7110.c
drivers/media/dvb/ttpci/av7110.c
+1
-1
drivers/media/dvb/ttpci/av7110_hw.c
drivers/media/dvb/ttpci/av7110_hw.c
+3
-0
drivers/media/video/cpia.c
drivers/media/video/cpia.c
+1
-1
drivers/media/video/videocodec.h
drivers/media/video/videocodec.h
+1
-1
drivers/media/video/zr36050.c
drivers/media/video/zr36050.c
+1
-1
drivers/media/video/zr36060.c
drivers/media/video/zr36060.c
+1
-1
drivers/media/video/zr36120_i2c.c
drivers/media/video/zr36120_i2c.c
+1
-1
未找到文件。
drivers/media/dvb/dvb-core/demux.h
浏览文件 @
155ec9e6
...
@@ -216,7 +216,7 @@ struct dmx_frontend {
...
@@ -216,7 +216,7 @@ struct dmx_frontend {
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/*
/*
* Flags OR'ed in the capabilites field of struct dmx_demux.
* Flags OR'ed in the capabilit
i
es field of struct dmx_demux.
*/
*/
#define DMX_TS_FILTERING 1
#define DMX_TS_FILTERING 1
...
...
drivers/media/dvb/dvb-usb/dvb-usb-init.c
浏览文件 @
155ec9e6
...
@@ -47,7 +47,7 @@ static int dvb_usb_init(struct dvb_usb_device *d)
...
@@ -47,7 +47,7 @@ static int dvb_usb_init(struct dvb_usb_device *d)
d
->
state
=
DVB_USB_STATE_INIT
;
d
->
state
=
DVB_USB_STATE_INIT
;
/* check the capabilites and set appropriate variables */
/* check the capabilit
i
es and set appropriate variables */
/* speed - when running at FULL speed we need a HW PID filter */
/* speed - when running at FULL speed we need a HW PID filter */
if
(
d
->
udev
->
speed
==
USB_SPEED_FULL
&&
!
(
d
->
props
.
caps
&
DVB_USB_HAS_PID_FILTER
))
{
if
(
d
->
udev
->
speed
==
USB_SPEED_FULL
&&
!
(
d
->
props
.
caps
&
DVB_USB_HAS_PID_FILTER
))
{
...
...
drivers/media/dvb/dvb-usb/dvb-usb.h
浏览文件 @
155ec9e6
...
@@ -87,7 +87,7 @@ struct dvb_usb_device;
...
@@ -87,7 +87,7 @@ struct dvb_usb_device;
/**
/**
* struct dvb_usb_properties - properties of a dvb-usb-device
* struct dvb_usb_properties - properties of a dvb-usb-device
* @caps: capabilites of the DVB USB device.
* @caps: capabilit
i
es of the DVB USB device.
* @pid_filter_count: number of PID filter position in the optional hardware
* @pid_filter_count: number of PID filter position in the optional hardware
* PID-filter.
* PID-filter.
*
*
...
...
drivers/media/dvb/ttpci/av7110.c
浏览文件 @
155ec9e6
...
@@ -1439,7 +1439,7 @@ static int check_firmware(struct av7110* av7110)
...
@@ -1439,7 +1439,7 @@ static int check_firmware(struct av7110* av7110)
len
=
ntohl
(
*
(
u32
*
)
ptr
);
len
=
ntohl
(
*
(
u32
*
)
ptr
);
ptr
+=
4
;
ptr
+=
4
;
if
(
len
>=
512
)
{
if
(
len
>=
512
)
{
printk
(
"dvb-ttpci: dpram file is way to big.
\n
"
);
printk
(
"dvb-ttpci: dpram file is way to
o
big.
\n
"
);
return
-
EINVAL
;
return
-
EINVAL
;
}
}
if
(
crc
!=
crc32_le
(
0
,
ptr
,
len
))
{
if
(
crc
!=
crc32_le
(
0
,
ptr
,
len
))
{
...
...
drivers/media/dvb/ttpci/av7110_hw.c
浏览文件 @
155ec9e6
...
@@ -245,6 +245,9 @@ int av7110_bootarm(struct av7110 *av7110)
...
@@ -245,6 +245,9 @@ int av7110_bootarm(struct av7110 *av7110)
/* test DEBI */
/* test DEBI */
iwdebi
(
av7110
,
DEBISWAP
,
DPRAM_BASE
,
0x76543210
,
4
);
iwdebi
(
av7110
,
DEBISWAP
,
DPRAM_BASE
,
0x76543210
,
4
);
/* FIXME: Why does Nexus CA require 2x iwdebi for first init? */
iwdebi
(
av7110
,
DEBISWAP
,
DPRAM_BASE
,
0x76543210
,
4
);
if
((
ret
=
irdebi
(
av7110
,
DEBINOSWAP
,
DPRAM_BASE
,
0
,
4
))
!=
0x10325476
)
{
if
((
ret
=
irdebi
(
av7110
,
DEBINOSWAP
,
DPRAM_BASE
,
0
,
4
))
!=
0x10325476
)
{
printk
(
KERN_ERR
"dvb-ttpci: debi test in av7110_bootarm() failed: "
printk
(
KERN_ERR
"dvb-ttpci: debi test in av7110_bootarm() failed: "
"%08x != %08x (check your BIOS 'Plug&Play OS' settings)
\n
"
,
"%08x != %08x (check your BIOS 'Plug&Play OS' settings)
\n
"
,
...
...
drivers/media/video/cpia.c
浏览文件 @
155ec9e6
...
@@ -3369,7 +3369,7 @@ static int cpia_do_ioctl(struct inode *inode, struct file *file,
...
@@ -3369,7 +3369,7 @@ static int cpia_do_ioctl(struct inode *inode, struct file *file,
//DBG("cpia_ioctl: %u\n", ioctlnr);
//DBG("cpia_ioctl: %u\n", ioctlnr);
switch
(
ioctlnr
)
{
switch
(
ioctlnr
)
{
/* query capabilites */
/* query capabilit
i
es */
case
VIDIOCGCAP
:
case
VIDIOCGCAP
:
{
{
struct
video_capability
*
b
=
arg
;
struct
video_capability
*
b
=
arg
;
...
...
drivers/media/video/videocodec.h
浏览文件 @
155ec9e6
...
@@ -56,7 +56,7 @@
...
@@ -56,7 +56,7 @@
the slave is bound to it). Otherwise it doesn't need this functions and
the slave is bound to it). Otherwise it doesn't need this functions and
therfor they may not be initialized.
therfor they may not be initialized.
The other fuctions are just for convenience, as they are for s
h
ure used by
The other fuctions are just for convenience, as they are for sure used by
most/all of the codecs. The last ones may be ommited, too.
most/all of the codecs. The last ones may be ommited, too.
See the structure declaration below for more information and which data has
See the structure declaration below for more information and which data has
...
...
drivers/media/video/zr36050.c
浏览文件 @
155ec9e6
...
@@ -159,7 +159,7 @@ zr36050_wait_end (struct zr36050 *ptr)
...
@@ -159,7 +159,7 @@ zr36050_wait_end (struct zr36050 *ptr)
while
(
!
(
zr36050_read_status1
(
ptr
)
&
0x4
))
{
while
(
!
(
zr36050_read_status1
(
ptr
)
&
0x4
))
{
udelay
(
1
);
udelay
(
1
);
if
(
i
++
>
200000
)
{
// 200ms, there is for s
h
ure something wrong!!!
if
(
i
++
>
200000
)
{
// 200ms, there is for sure something wrong!!!
dprintk
(
1
,
dprintk
(
1
,
"%s: timout at wait_end (last status: 0x%02x)
\n
"
,
"%s: timout at wait_end (last status: 0x%02x)
\n
"
,
ptr
->
name
,
ptr
->
status1
);
ptr
->
name
,
ptr
->
status1
);
...
...
drivers/media/video/zr36060.c
浏览文件 @
155ec9e6
...
@@ -161,7 +161,7 @@ zr36060_wait_end (struct zr36060 *ptr)
...
@@ -161,7 +161,7 @@ zr36060_wait_end (struct zr36060 *ptr)
while
(
zr36060_read_status
(
ptr
)
&
ZR060_CFSR_Busy
)
{
while
(
zr36060_read_status
(
ptr
)
&
ZR060_CFSR_Busy
)
{
udelay
(
1
);
udelay
(
1
);
if
(
i
++
>
200000
)
{
// 200ms, there is for s
h
ure something wrong!!!
if
(
i
++
>
200000
)
{
// 200ms, there is for sure something wrong!!!
dprintk
(
1
,
dprintk
(
1
,
"%s: timout at wait_end (last status: 0x%02x)
\n
"
,
"%s: timout at wait_end (last status: 0x%02x)
\n
"
,
ptr
->
name
,
ptr
->
status
);
ptr
->
name
,
ptr
->
status
);
...
...
drivers/media/video/zr36120_i2c.c
浏览文件 @
155ec9e6
...
@@ -65,7 +65,7 @@ void attach_inform(struct i2c_bus *bus, int id)
...
@@ -65,7 +65,7 @@ void attach_inform(struct i2c_bus *bus, int id)
case
I2C_DRIVERID_VIDEODECODER
:
case
I2C_DRIVERID_VIDEODECODER
:
DEBUG
(
printk
(
CARD_INFO
"decoder attached
\n
"
,
CARD
));
DEBUG
(
printk
(
CARD_INFO
"decoder attached
\n
"
,
CARD
));
/* fetch the capabilites of the decoder */
/* fetch the capabilit
i
es of the decoder */
rv
=
i2c_control_device
(
&
ztv
->
i2c
,
I2C_DRIVERID_VIDEODECODER
,
DECODER_GET_CAPABILITIES
,
&
dc
);
rv
=
i2c_control_device
(
&
ztv
->
i2c
,
I2C_DRIVERID_VIDEODECODER
,
DECODER_GET_CAPABILITIES
,
&
dc
);
if
(
rv
)
{
if
(
rv
)
{
DEBUG
(
printk
(
CARD_DEBUG
"decoder is not V4L aware!
\n
"
,
CARD
));
DEBUG
(
printk
(
CARD_DEBUG
"decoder is not V4L aware!
\n
"
,
CARD
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录