Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
6aaf7934
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看板
提交
6aaf7934
编写于
8月 21, 2017
作者:
H
Helge Deller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
parisc/sticore: Fix section mismatches
Signed-off-by:
N
Helge Deller
<
deller@gmx.de
>
上级
c8dbaa22
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
5 deletion
+6
-5
drivers/video/console/sticore.c
drivers/video/console/sticore.c
+6
-5
未找到文件。
drivers/video/console/sticore.c
浏览文件 @
6aaf7934
...
...
@@ -281,7 +281,7 @@ static void sti_rom_copy(unsigned long base, unsigned long count, void *dest)
static
char
default_sti_path
[
21
]
__read_mostly
;
#ifndef MODULE
static
int
sti_setup
(
char
*
str
)
static
int
__init
sti_setup
(
char
*
str
)
{
if
(
str
)
strlcpy
(
default_sti_path
,
str
,
sizeof
(
default_sti_path
));
...
...
@@ -941,7 +941,7 @@ static void sticore_check_for_default_sti(struct sti_struct *sti, char *path)
* in the additional address field addr[1] while on
* older Systems the PDC stores it in page0->proc_sti
*/
static
int
sticore_pa_init
(
struct
parisc_device
*
dev
)
static
int
__init
sticore_pa_init
(
struct
parisc_device
*
dev
)
{
char
pa_path
[
21
];
struct
sti_struct
*
sti
=
NULL
;
...
...
@@ -1009,7 +1009,7 @@ static int sticore_pci_init(struct pci_dev *pd, const struct pci_device_id *ent)
}
static
void
sticore_pci_remove
(
struct
pci_dev
*
pd
)
static
void
__exit
sticore_pci_remove
(
struct
pci_dev
*
pd
)
{
BUG
();
}
...
...
@@ -1029,7 +1029,7 @@ static struct pci_driver pci_sti_driver = {
.
name
=
"sti"
,
.
id_table
=
sti_pci_tbl
,
.
probe
=
sticore_pci_init
,
.
remove
=
sticore_pci_remove
,
.
remove
=
__exit_p
(
sticore_pci_remove
)
,
};
static
struct
parisc_device_id
sti_pa_tbl
[]
=
{
...
...
@@ -1037,8 +1037,9 @@ static struct parisc_device_id sti_pa_tbl[] = {
{
HPHW_FIO
,
HVERSION_REV_ANY_ID
,
HVERSION_ANY_ID
,
0x00085
},
{
0
,
}
};
MODULE_DEVICE_TABLE
(
parisc
,
sti_pa_tbl
);
static
struct
parisc_driver
pa_sti_driver
=
{
static
struct
parisc_driver
pa_sti_driver
__refdata
=
{
.
name
=
"sti"
,
.
id_table
=
sti_pa_tbl
,
.
probe
=
sticore_pa_init
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录