Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
ea5f2786
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看板
提交
ea5f2786
编写于
1月 31, 2011
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau: silence some compiler warnings
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
cb1d771a
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
2 addition
and
9 deletion
+2
-9
drivers/gpu/drm/nouveau/nouveau_channel.c
drivers/gpu/drm/nouveau/nouveau_channel.c
+1
-1
drivers/gpu/drm/nouveau/nouveau_dp.c
drivers/gpu/drm/nouveau/nouveau_dp.c
+0
-2
drivers/gpu/drm/nouveau/nv50_display.c
drivers/gpu/drm/nouveau/nv50_display.c
+1
-1
drivers/gpu/drm/nouveau/nv50_gpio.c
drivers/gpu/drm/nouveau/nv50_gpio.c
+0
-2
drivers/gpu/drm/nouveau/nv50_vm.c
drivers/gpu/drm/nouveau/nv50_vm.c
+0
-1
drivers/gpu/drm/nouveau/nvc0_graph.c
drivers/gpu/drm/nouveau/nvc0_graph.c
+0
-2
未找到文件。
drivers/gpu/drm/nouveau/nouveau_channel.c
浏览文件 @
ea5f2786
...
...
@@ -35,7 +35,7 @@ nouveau_channel_pushbuf_ctxdma_init(struct nouveau_channel *chan)
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_bo
*
pb
=
chan
->
pushbuf_bo
;
struct
nouveau_gpuobj
*
pushbuf
=
NULL
;
int
ret
;
int
ret
=
0
;
if
(
dev_priv
->
card_type
>=
NV_50
)
{
if
(
dev_priv
->
card_type
<
NV_C0
)
{
...
...
drivers/gpu/drm/nouveau/nouveau_dp.c
浏览文件 @
ea5f2786
...
...
@@ -175,7 +175,6 @@ nouveau_dp_link_train_adjust(struct drm_encoder *encoder, uint8_t *config)
{
struct
nouveau_encoder
*
nv_encoder
=
nouveau_encoder
(
encoder
);
struct
drm_device
*
dev
=
encoder
->
dev
;
struct
bit_displayport_encoder_table_entry
*
dpse
;
struct
bit_displayport_encoder_table
*
dpe
;
int
ret
,
i
,
dpe_headerlen
,
vs
=
0
,
pre
=
0
;
uint8_t
request
[
2
];
...
...
@@ -183,7 +182,6 @@ nouveau_dp_link_train_adjust(struct drm_encoder *encoder, uint8_t *config)
dpe
=
nouveau_bios_dp_table
(
dev
,
nv_encoder
->
dcb
,
&
dpe_headerlen
);
if
(
!
dpe
)
return
false
;
dpse
=
(
void
*
)((
char
*
)
dpe
+
dpe_headerlen
);
ret
=
auxch_rd
(
encoder
,
DP_ADJUST_REQUEST_LANE0_1
,
request
,
2
);
if
(
ret
)
...
...
drivers/gpu/drm/nouveau/nv50_display.c
浏览文件 @
ea5f2786
...
...
@@ -587,7 +587,7 @@ static void
nv50_display_unk20_handler
(
struct
drm_device
*
dev
)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
u32
unk30
=
nv_rd32
(
dev
,
0x610030
),
tmp
,
pclk
,
script
,
mc
;
u32
unk30
=
nv_rd32
(
dev
,
0x610030
),
tmp
,
pclk
,
script
,
mc
=
0
;
struct
dcb_entry
*
dcb
;
int
i
,
crtc
,
or
,
type
=
OUTPUT_ANY
;
...
...
drivers/gpu/drm/nouveau/nv50_gpio.c
浏览文件 @
ea5f2786
...
...
@@ -205,7 +205,6 @@ nv50_gpio_init(struct drm_device *dev)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_gpio_engine
*
pgpio
=
&
dev_priv
->
engine
.
gpio
;
struct
nv50_gpio_priv
*
priv
;
int
ret
;
if
(
!
pgpio
->
priv
)
{
...
...
@@ -213,7 +212,6 @@ nv50_gpio_init(struct drm_device *dev)
if
(
ret
)
return
ret
;
}
priv
=
pgpio
->
priv
;
/* disable, and ack any pending gpio interrupts */
nv_wr32
(
dev
,
0xe050
,
0x00000000
);
...
...
drivers/gpu/drm/nouveau/nv50_vm.c
浏览文件 @
ea5f2786
...
...
@@ -31,7 +31,6 @@ void
nv50_vm_map_pgt
(
struct
nouveau_gpuobj
*
pgd
,
u32
pde
,
struct
nouveau_gpuobj
*
pgt
[
2
])
{
struct
drm_nouveau_private
*
dev_priv
=
pgd
->
dev
->
dev_private
;
u64
phys
=
0xdeadcafe00000000ULL
;
u32
coverage
=
0
;
...
...
drivers/gpu/drm/nouveau/nvc0_graph.c
浏览文件 @
ea5f2786
...
...
@@ -640,7 +640,6 @@ nvc0_graph_init(struct drm_device *dev)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_pgraph_engine
*
pgraph
=
&
dev_priv
->
engine
.
graph
;
struct
nvc0_graph_priv
*
priv
;
int
ret
;
dev_priv
->
engine
.
graph
.
accel_blocked
=
true
;
...
...
@@ -665,7 +664,6 @@ nvc0_graph_init(struct drm_device *dev)
if
(
ret
)
return
ret
;
}
priv
=
pgraph
->
priv
;
nvc0_graph_init_obj418880
(
dev
);
nvc0_graph_init_regs
(
dev
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录