Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
36a59bd8
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
7
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看板
提交
36a59bd8
编写于
6月 29, 2006
作者:
D
David S. Miller
提交者:
David S. Miller
6月 29, 2006
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[SPARC64] auxio: Convert to pure of_device driver.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
50312ce9
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
24 addition
and
49 deletion
+24
-49
arch/sparc64/kernel/auxio.c
arch/sparc64/kernel/auxio.c
+24
-49
未找到文件。
arch/sparc64/kernel/auxio.c
浏览文件 @
36a59bd8
...
...
@@ -111,12 +111,6 @@ void auxio_set_lte(int on)
}
}
static
void
__devinit
auxio_report_dev
(
struct
device_node
*
dp
)
{
printk
(
KERN_INFO
"AUXIO: Found device at %s
\n
"
,
dp
->
full_name
);
}
static
struct
of_device_id
auxio_match
[]
=
{
{
.
name
=
"auxio"
,
...
...
@@ -126,67 +120,48 @@ static struct of_device_id auxio_match[] = {
MODULE_DEVICE_TABLE
(
of
,
auxio_match
);
#ifdef CONFIG_SBUS
static
int
__devinit
auxio_sbus_probe
(
struct
of_device
*
dev
,
const
struct
of_device_id
*
match
)
static
int
__devinit
auxio_probe
(
struct
of_device
*
dev
,
const
struct
of_device_id
*
match
)
{
struct
sbus_dev
*
sdev
=
to_sbus_device
(
&
dev
->
dev
);
struct
device_node
*
dp
=
dev
->
node
;
unsigned
long
size
;
if
(
!
strcmp
(
dp
->
parent
->
name
,
"ebus"
))
{
auxio_devtype
=
AUXIO_TYPE_EBUS
;
size
=
sizeof
(
u32
);
}
else
if
(
!
strcmp
(
dp
->
parent
->
name
,
"sbus"
))
{
auxio_devtype
=
AUXIO_TYPE_SBUS
;
auxio_register
=
sbus_ioremap
(
&
sdev
->
resource
[
0
],
0
,
sdev
->
reg_addrs
[
0
].
reg_size
,
"auxiliaryIO"
);
if
(
!
auxio_register
)
size
=
1
;
}
else
{
printk
(
"auxio: Unknown parent bus type [%s]
\n
"
,
dp
->
parent
->
name
);
return
-
ENODEV
;
auxio_report_dev
(
dev
->
node
);
return
0
;
}
static
struct
of_platform_driver
auxio_sbus_driver
=
{
.
name
=
"auxio"
,
.
match_table
=
auxio_match
,
.
probe
=
auxio_sbus_probe
,
};
#endif
#ifdef CONFIG_PCI
static
int
__devinit
auxio_ebus_probe
(
struct
of_device
*
dev
,
const
struct
of_device_id
*
match
)
{
struct
linux_ebus_device
*
edev
=
to_ebus_device
(
&
dev
->
dev
);
auxio_devtype
=
AUXIO_TYPE_EBUS
;
auxio_register
=
ioremap
(
edev
->
resource
[
0
].
start
,
sizeof
(
u32
));
}
auxio_register
=
of_ioremap
(
&
dev
->
resource
[
0
],
0
,
size
,
"auxio"
);
if
(
!
auxio_register
)
return
-
ENODEV
;
auxio_report_dev
(
dev
->
node
);
printk
(
KERN_INFO
"AUXIO: Found device at %s
\n
"
,
dp
->
full_name
);
if
(
auxio_devtype
==
AUXIO_TYPE_EBUS
)
auxio_set_led
(
AUXIO_LED_ON
);
return
0
;
}
static
struct
of_platform_driver
auxio_
ebus_
driver
=
{
static
struct
of_platform_driver
auxio_driver
=
{
.
name
=
"auxio"
,
.
match_table
=
auxio_match
,
.
probe
=
auxio_
ebus_
probe
,
.
probe
=
auxio_probe
,
};
#endif
static
int
__init
auxio_
probe
(
void
)
static
int
__init
auxio_
init
(
void
)
{
#ifdef CONFIG_SBUS
of_register_driver
(
&
auxio_sbus_driver
,
&
sbus_bus_type
);
#endif
#ifdef CONFIG_PCI
of_register_driver
(
&
auxio_ebus_driver
,
&
ebus_bus_type
);
#endif
return
0
;
return
of_register_driver
(
&
auxio_driver
,
&
of_bus_type
);
}
/* Must be after subsys_initcall() so that busses are probed. Must
* be before device_initcall() because things like the floppy driver
* need to use the AUXIO register.
*/
fs_initcall
(
auxio_
probe
);
fs_initcall
(
auxio_
init
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录