Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
da8cfe03
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
da8cfe03
编写于
3月 23, 2009
作者:
H
Hiroshi DOYU
提交者:
Tony Lindgren
3月 23, 2009
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
omap mailbox: fix empty struct device for omap2
Signed-off-by:
N
Hiroshi DOYU
<
Hiroshi.DOYU@nokia.com
>
上级
f98d67a0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
7 deletion
+8
-7
arch/arm/mach-omap2/devices.c
arch/arm/mach-omap2/devices.c
+1
-1
arch/arm/mach-omap2/mailbox.c
arch/arm/mach-omap2/mailbox.c
+7
-6
未找到文件。
arch/arm/mach-omap2/devices.c
浏览文件 @
da8cfe03
...
...
@@ -61,7 +61,7 @@ static struct resource omap3_mbox_resources[] = {
};
static
struct
platform_device
mbox_device
=
{
.
name
=
"mailbox"
,
.
name
=
"
omap2-
mailbox"
,
.
id
=
-
1
,
};
...
...
arch/arm/mach-omap2/mailbox.c
浏览文件 @
da8cfe03
...
...
@@ -234,7 +234,7 @@ static struct omap_mbox mbox_iva_info = {
};
#endif
static
int
__init
omap2_mbox_probe
(
struct
platform_device
*
pdev
)
static
int
__
dev
init
omap2_mbox_probe
(
struct
platform_device
*
pdev
)
{
struct
resource
*
res
;
int
ret
;
...
...
@@ -257,7 +257,7 @@ static int __init omap2_mbox_probe(struct platform_device *pdev)
goto
err_dsp
;
}
ret
=
omap_mbox_register
(
&
mbox_dsp_info
);
ret
=
omap_mbox_register
(
&
pdev
->
dev
,
&
mbox_dsp_info
);
if
(
ret
)
goto
err_dsp
;
...
...
@@ -271,7 +271,7 @@ static int __init omap2_mbox_probe(struct platform_device *pdev)
goto
err_iva1
;
}
mbox_iva_info
.
irq
=
res
->
start
;
ret
=
omap_mbox_register
(
&
mbox_iva_info
);
ret
=
omap_mbox_register
(
&
pdev
->
dev
,
&
mbox_iva_info
);
if
(
ret
)
goto
err_iva1
;
}
...
...
@@ -285,7 +285,7 @@ static int __init omap2_mbox_probe(struct platform_device *pdev)
return
ret
;
}
static
int
omap2_mbox_remove
(
struct
platform_device
*
pdev
)
static
int
__devexit
omap2_mbox_remove
(
struct
platform_device
*
pdev
)
{
#if defined(CONFIG_ARCH_OMAP2420)
omap_mbox_unregister
(
&
mbox_iva_info
);
...
...
@@ -297,9 +297,9 @@ static int omap2_mbox_remove(struct platform_device *pdev)
static
struct
platform_driver
omap2_mbox_driver
=
{
.
probe
=
omap2_mbox_probe
,
.
remove
=
omap2_mbox_remove
,
.
remove
=
__devexit_p
(
omap2_mbox_remove
)
,
.
driver
=
{
.
name
=
"mailbox"
,
.
name
=
"
omap2-
mailbox"
,
},
};
...
...
@@ -319,3 +319,4 @@ module_exit(omap2_mbox_exit);
MODULE_LICENSE
(
"GPL v2"
);
MODULE_DESCRIPTION
(
"omap mailbox: omap2/3 architecture specific functions"
);
MODULE_AUTHOR
(
"Hiroshi DOYU <Hiroshi.DOYU@nokia.com>, Paul Mundt"
);
MODULE_ALIAS
(
"platform:omap2-mailbox"
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录