Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
c1bebd07
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看板
提交
c1bebd07
编写于
8月 21, 2017
作者:
H
Helge Deller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
parisc/serio: Fix section mismatches in gscps2 and hp_sdc drivers
Signed-off-by:
N
Helge Deller
<
deller@gmx.de
>
上级
cfe4fbfb
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
7 deletion
+7
-7
drivers/input/serio/gscps2.c
drivers/input/serio/gscps2.c
+5
-5
drivers/input/serio/hp_sdc.c
drivers/input/serio/hp_sdc.c
+2
-2
未找到文件。
drivers/input/serio/gscps2.c
浏览文件 @
c1bebd07
...
...
@@ -325,7 +325,7 @@ static void gscps2_close(struct serio *port)
* @return: success/error report
*/
static
int
gscps2_probe
(
struct
parisc_device
*
dev
)
static
int
__init
gscps2_probe
(
struct
parisc_device
*
dev
)
{
struct
gscps2port
*
ps2port
;
struct
serio
*
serio
;
...
...
@@ -412,7 +412,7 @@ static int gscps2_probe(struct parisc_device *dev)
* @return: success/error report
*/
static
int
gscps2_remove
(
struct
parisc_device
*
dev
)
static
int
__exit
gscps2_remove
(
struct
parisc_device
*
dev
)
{
struct
gscps2port
*
ps2port
=
dev_get_drvdata
(
&
dev
->
dev
);
...
...
@@ -430,7 +430,7 @@ static int gscps2_remove(struct parisc_device *dev)
}
static
struct
parisc_device_id
gscps2_device_tbl
[]
=
{
static
const
struct
parisc_device_id
gscps2_device_tbl
[]
__initconst
=
{
{
HPHW_FIO
,
HVERSION_REV_ANY_ID
,
HVERSION_ANY_ID
,
0x00084
},
/* LASI PS/2 */
#ifdef DINO_TESTED
{
HPHW_FIO
,
HVERSION_REV_ANY_ID
,
HVERSION_ANY_ID
,
0x00096
},
/* DINO PS/2 */
...
...
@@ -439,11 +439,11 @@ static struct parisc_device_id gscps2_device_tbl[] = {
};
MODULE_DEVICE_TABLE
(
parisc
,
gscps2_device_tbl
);
static
struct
parisc_driver
parisc_ps2_driver
=
{
static
struct
parisc_driver
parisc_ps2_driver
__refdata
=
{
.
name
=
"gsc_ps2"
,
.
id_table
=
gscps2_device_tbl
,
.
probe
=
gscps2_probe
,
.
remove
=
gscps2_remove
,
.
remove
=
__exit_p
(
gscps2_remove
)
,
};
static
int
__init
gscps2_init
(
void
)
...
...
drivers/input/serio/hp_sdc.c
浏览文件 @
c1bebd07
...
...
@@ -805,7 +805,7 @@ static void hp_sdc_kicker(unsigned long data)
#if defined(__hppa__)
static
const
struct
parisc_device_id
hp_sdc_tbl
[]
=
{
static
const
struct
parisc_device_id
hp_sdc_tbl
[]
__initconst
=
{
{
.
hw_type
=
HPHW_FIO
,
.
hversion_rev
=
HVERSION_REV_ANY_ID
,
...
...
@@ -820,7 +820,7 @@ MODULE_DEVICE_TABLE(parisc, hp_sdc_tbl);
static
int
__init
hp_sdc_init_hppa
(
struct
parisc_device
*
d
);
static
struct
delayed_work
moduleloader_work
;
static
struct
parisc_driver
hp_sdc_driver
=
{
static
struct
parisc_driver
hp_sdc_driver
__refdata
=
{
.
name
=
"hp_sdc"
,
.
id_table
=
hp_sdc_tbl
,
.
probe
=
hp_sdc_init_hppa
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录