Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
75081322
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看板
提交
75081322
编写于
8月 30, 2008
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sparc32: Convert PC RTC probing to pure OF driver.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
afc88ad6
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
17 addition
and
13 deletion
+17
-13
drivers/char/rtc.c
drivers/char/rtc.c
+17
-13
未找到文件。
drivers/char/rtc.c
浏览文件 @
75081322
...
...
@@ -88,12 +88,12 @@
#endif
#ifdef CONFIG_SPARC32
#include <linux/
pci
.h>
#include <linux/
jiffies
.h>
#include <asm/
ebus
.h>
#include <linux/
of
.h>
#include <linux/
of_device
.h>
#include <asm/
io
.h>
static
unsigned
long
rtc_port
;
static
int
rtc_irq
=
PCI_IRQ_NONE
;
static
int
rtc_irq
;
#endif
#ifdef CONFIG_HPET_RTC_IRQ
...
...
@@ -973,8 +973,8 @@ static int __init rtc_init(void)
char
*
guess
=
NULL
;
#endif
#ifdef CONFIG_SPARC32
struct
linux_ebus
*
ebus
;
struct
linux_ebus_device
*
edev
;
struct
device_node
*
ebus_dp
;
struct
of_device
*
op
;
#else
void
*
r
;
#ifdef RTC_IRQ
...
...
@@ -983,21 +983,25 @@ static int __init rtc_init(void)
#endif
#ifdef CONFIG_SPARC32
for_each_ebus
(
ebus
)
{
for_each_ebusdev
(
edev
,
ebus
)
{
if
(
strcmp
(
edev
->
prom_node
->
name
,
"rtc"
)
==
0
)
{
rtc_port
=
edev
->
resource
[
0
].
start
;
rtc_irq
=
edev
->
irqs
[
0
];
for_each_node_by_name
(
ebus_dp
,
"ebus"
)
{
struct
device_node
*
dp
;
for
(
dp
=
ebus_dp
;
dp
;
dp
=
dp
->
sibling
)
{
if
(
!
strcmp
(
dp
->
name
,
"rtc"
))
{
op
=
of_find_device_by_node
(
dp
);
if
(
op
)
{
rtc_port
=
op
->
resource
[
0
].
start
;
rtc_irq
=
op
->
irqs
[
0
];
goto
found
;
}
}
}
}
rtc_has_irq
=
0
;
printk
(
KERN_ERR
"rtc_init: no PC rtc found
\n
"
);
return
-
EIO
;
found:
if
(
rtc_irq
==
PCI_IRQ_NONE
)
{
if
(
!
rtc_irq
)
{
rtc_has_irq
=
0
;
goto
no_irq
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录