Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
e3c4e5dd
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
e3c4e5dd
编写于
12月 05, 2010
作者:
C
Chris Wilson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/i915: caps.has_rc6 is no longer used, remove it.
Signed-off-by:
N
Chris Wilson
<
chris@chris-wilson.co.uk
>
上级
3c8cdf9b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
3 addition
and
6 deletion
+3
-6
drivers/gpu/drm/i915/i915_debugfs.c
drivers/gpu/drm/i915/i915_debugfs.c
+0
-1
drivers/gpu/drm/i915/i915_drv.c
drivers/gpu/drm/i915/i915_drv.c
+3
-3
drivers/gpu/drm/i915/i915_drv.h
drivers/gpu/drm/i915/i915_drv.h
+0
-2
未找到文件。
drivers/gpu/drm/i915/i915_debugfs.c
浏览文件 @
e3c4e5dd
...
...
@@ -73,7 +73,6 @@ static int i915_capabilities(struct seq_file *m, void *data)
B
(
is_broadwater
);
B
(
is_crestline
);
B
(
has_fbc
);
B
(
has_rc6
);
B
(
has_pipe_cxsr
);
B
(
has_hotplug
);
B
(
cursor_needs_physical
);
...
...
drivers/gpu/drm/i915/i915_drv.c
浏览文件 @
e3c4e5dd
...
...
@@ -111,7 +111,7 @@ static const struct intel_device_info intel_i965g_info = {
static
const
struct
intel_device_info
intel_i965gm_info
=
{
.
gen
=
4
,
.
is_crestline
=
1
,
.
is_mobile
=
1
,
.
has_fbc
=
1
,
.
has_
rc6
=
1
,
.
has_
hotplug
=
1
,
.
is_mobile
=
1
,
.
has_fbc
=
1
,
.
has_hotplug
=
1
,
.
has_overlay
=
1
,
.
supports_tv
=
1
,
};
...
...
@@ -130,7 +130,7 @@ static const struct intel_device_info intel_g45_info = {
static
const
struct
intel_device_info
intel_gm45_info
=
{
.
gen
=
4
,
.
is_g4x
=
1
,
.
is_mobile
=
1
,
.
need_gfx_hws
=
1
,
.
has_fbc
=
1
,
.
has_rc6
=
1
,
.
is_mobile
=
1
,
.
need_gfx_hws
=
1
,
.
has_fbc
=
1
,
.
has_pipe_cxsr
=
1
,
.
has_hotplug
=
1
,
.
supports_tv
=
1
,
.
has_bsd_ring
=
1
,
...
...
@@ -150,7 +150,7 @@ static const struct intel_device_info intel_ironlake_d_info = {
static
const
struct
intel_device_info
intel_ironlake_m_info
=
{
.
gen
=
5
,
.
is_mobile
=
1
,
.
need_gfx_hws
=
1
,
.
has_
rc6
=
1
,
.
has_
hotplug
=
1
,
.
need_gfx_hws
=
1
,
.
has_hotplug
=
1
,
.
has_fbc
=
0
,
/* disabled due to buggy hardware */
.
has_bsd_ring
=
1
,
};
...
...
drivers/gpu/drm/i915/i915_drv.h
浏览文件 @
e3c4e5dd
...
...
@@ -223,7 +223,6 @@ struct intel_device_info {
u8
is_broadwater
:
1
;
u8
is_crestline
:
1
;
u8
has_fbc
:
1
;
u8
has_rc6
:
1
;
u8
has_pipe_cxsr
:
1
;
u8
has_hotplug
:
1
;
u8
cursor_needs_physical
:
1
;
...
...
@@ -930,7 +929,6 @@ enum intel_chip_family {
#define HAS_FW_BLC(dev) (INTEL_INFO(dev)->gen > 2)
#define HAS_PIPE_CXSR(dev) (INTEL_INFO(dev)->has_pipe_cxsr)
#define I915_HAS_FBC(dev) (INTEL_INFO(dev)->has_fbc)
#define I915_HAS_RC6(dev) (INTEL_INFO(dev)->has_rc6)
#define HAS_PCH_SPLIT(dev) (IS_GEN5(dev) || IS_GEN6(dev))
#define HAS_PIPE_CONTROL(dev) (IS_GEN5(dev) || IS_GEN6(dev))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录