Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
9a04d08b
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 4 年多
通知
15
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9a04d08b
编写于
11月 19, 2013
作者:
R
Rafael J. Wysocki
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'acpi-video'
* acpi-video: ACPI / video: clean up DMI table for initial black screen problem
上级
dcaea2c1
545ef368
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
75 deletion
+12
-75
drivers/acpi/video.c
drivers/acpi/video.c
+12
-75
未找到文件。
drivers/acpi/video.c
浏览文件 @
9a04d08b
...
@@ -81,13 +81,6 @@ module_param(brightness_switch_enabled, bool, 0644);
...
@@ -81,13 +81,6 @@ module_param(brightness_switch_enabled, bool, 0644);
static
bool
allow_duplicates
;
static
bool
allow_duplicates
;
module_param
(
allow_duplicates
,
bool
,
0644
);
module_param
(
allow_duplicates
,
bool
,
0644
);
/*
* Some BIOSes claim they use minimum backlight at boot,
* and this may bring dimming screen after boot
*/
static
bool
use_bios_initial_backlight
=
1
;
module_param
(
use_bios_initial_backlight
,
bool
,
0644
);
/*
/*
* For Windows 8 systems: if set ture and the GPU driver has
* For Windows 8 systems: if set ture and the GPU driver has
* registered a backlight interface, skip registering ACPI video's.
* registered a backlight interface, skip registering ACPI video's.
...
@@ -406,12 +399,6 @@ static int __init video_set_bqc_offset(const struct dmi_system_id *d)
...
@@ -406,12 +399,6 @@ static int __init video_set_bqc_offset(const struct dmi_system_id *d)
return
0
;
return
0
;
}
}
static
int
video_ignore_initial_backlight
(
const
struct
dmi_system_id
*
d
)
{
use_bios_initial_backlight
=
0
;
return
0
;
}
static
struct
dmi_system_id
video_dmi_table
[]
__initdata
=
{
static
struct
dmi_system_id
video_dmi_table
[]
__initdata
=
{
/*
/*
* Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
* Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
...
@@ -456,54 +443,6 @@ static struct dmi_system_id video_dmi_table[] __initdata = {
...
@@ -456,54 +443,6 @@ static struct dmi_system_id video_dmi_table[] __initdata = {
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"Aspire 7720"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"Aspire 7720"
),
},
},
},
},
{
.
callback
=
video_ignore_initial_backlight
,
.
ident
=
"HP Folio 13-2000"
,
.
matches
=
{
DMI_MATCH
(
DMI_BOARD_VENDOR
,
"Hewlett-Packard"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"HP Folio 13 - 2000 Notebook PC"
),
},
},
{
.
callback
=
video_ignore_initial_backlight
,
.
ident
=
"Fujitsu E753"
,
.
matches
=
{
DMI_MATCH
(
DMI_BOARD_VENDOR
,
"FUJITSU"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"LIFEBOOK E753"
),
},
},
{
.
callback
=
video_ignore_initial_backlight
,
.
ident
=
"HP Pavilion dm4"
,
.
matches
=
{
DMI_MATCH
(
DMI_BOARD_VENDOR
,
"Hewlett-Packard"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"HP Pavilion dm4 Notebook PC"
),
},
},
{
.
callback
=
video_ignore_initial_backlight
,
.
ident
=
"HP Pavilion g6 Notebook PC"
,
.
matches
=
{
DMI_MATCH
(
DMI_BOARD_VENDOR
,
"Hewlett-Packard"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"HP Pavilion g6 Notebook PC"
),
},
},
{
.
callback
=
video_ignore_initial_backlight
,
.
ident
=
"HP 1000 Notebook PC"
,
.
matches
=
{
DMI_MATCH
(
DMI_BOARD_VENDOR
,
"Hewlett-Packard"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"HP 1000 Notebook PC"
),
},
},
{
.
callback
=
video_ignore_initial_backlight
,
.
ident
=
"HP Pavilion m4"
,
.
matches
=
{
DMI_MATCH
(
DMI_BOARD_VENDOR
,
"Hewlett-Packard"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"HP Pavilion m4 Notebook PC"
),
},
},
{}
{}
};
};
...
@@ -839,20 +778,18 @@ acpi_video_init_brightness(struct acpi_video_device *device)
...
@@ -839,20 +778,18 @@ acpi_video_init_brightness(struct acpi_video_device *device)
if
(
!
device
->
cap
.
_BQC
)
if
(
!
device
->
cap
.
_BQC
)
goto
set_level
;
goto
set_level
;
if
(
use_bios_initial_backlight
)
{
level
=
acpi_video_bqc_value_to_level
(
device
,
level_old
);
level
=
acpi_video_bqc_value_to_level
(
device
,
level_old
);
/*
/*
* On some buggy laptops, _BQC returns an uninitialized
* On some buggy laptops, _BQC returns an uninitialized
* value when invoked for the first time, i.e.
* value when invoked for the first time, i.e.
* level_old is invalid (no matter whether it's a level
* level_old is invalid (no matter whether it's a level
* or an index). Set the backlight to max_level in this case.
* or an index). Set the backlight to max_level in this case.
*/
*/
for
(
i
=
2
;
i
<
br
->
count
;
i
++
)
for
(
i
=
2
;
i
<
br
->
count
;
i
++
)
if
(
level
==
br
->
levels
[
i
])
if
(
level
==
br
->
levels
[
i
])
break
;
break
;
if
(
i
==
br
->
count
||
!
level
)
if
(
i
==
br
->
count
||
!
level
)
level
=
max_level
;
level
=
max_level
;
}
set_level:
set_level:
result
=
acpi_video_device_lcd_set_level
(
device
,
level
);
result
=
acpi_video_device_lcd_set_level
(
device
,
level
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录