Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
e2051b42
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e2051b42
编写于
7月 27, 2013
作者:
A
Andreas Färber
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
arm_timer: QOM cast cleanup for icp_pit_state
Signed-off-by:
N
Andreas Färber
<
afaerber@suse.de
>
上级
0c88dea5
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
3 deletion
+8
-3
hw/timer/arm_timer.c
hw/timer/arm_timer.c
+8
-3
未找到文件。
hw/timer/arm_timer.c
浏览文件 @
e2051b42
...
...
@@ -298,8 +298,13 @@ static int sp804_init(SysBusDevice *sbd)
/* Integrator/CP timer module. */
#define TYPE_INTEGRATOR_PIT "integrator_pit"
#define INTEGRATOR_PIT(obj) \
OBJECT_CHECK(icp_pit_state, (obj), TYPE_INTEGRATOR_PIT)
typedef
struct
{
SysBusDevice
busdev
;
SysBusDevice
parent_obj
;
MemoryRegion
iomem
;
arm_timer_state
*
timer
[
3
];
}
icp_pit_state
;
...
...
@@ -341,7 +346,7 @@ static const MemoryRegionOps icp_pit_ops = {
static
int
icp_pit_init
(
SysBusDevice
*
dev
)
{
icp_pit_state
*
s
=
FROM_SYSBUS
(
icp_pit_state
,
dev
);
icp_pit_state
*
s
=
INTEGRATOR_PIT
(
dev
);
/* Timer 0 runs at the system clock speed (40MHz). */
s
->
timer
[
0
]
=
arm_timer_init
(
40000000
);
...
...
@@ -369,7 +374,7 @@ static void icp_pit_class_init(ObjectClass *klass, void *data)
}
static
const
TypeInfo
icp_pit_info
=
{
.
name
=
"integrator_pit"
,
.
name
=
TYPE_INTEGRATOR_PIT
,
.
parent
=
TYPE_SYS_BUS_DEVICE
,
.
instance_size
=
sizeof
(
icp_pit_state
),
.
class_init
=
icp_pit_class_init
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录