Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
fe54d857
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看板
提交
fe54d857
编写于
7月 27, 2013
作者:
A
Andreas Färber
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lm32_timer: QOM cast cleanup
Signed-off-by:
N
Andreas Färber
<
afaerber@suse.de
>
上级
541ab55f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
4 deletion
+8
-4
hw/timer/lm32_timer.c
hw/timer/lm32_timer.c
+8
-4
未找到文件。
hw/timer/lm32_timer.c
浏览文件 @
fe54d857
...
...
@@ -50,8 +50,12 @@ enum {
CR_STOP
=
(
1
<<
3
),
};
#define TYPE_LM32_TIMER "lm32-timer"
#define LM32_TIMER(obj) OBJECT_CHECK(LM32TimerState, (obj), TYPE_LM32_TIMER)
struct
LM32TimerState
{
SysBusDevice
busdev
;
SysBusDevice
parent_obj
;
MemoryRegion
iomem
;
QEMUBH
*
bh
;
...
...
@@ -161,7 +165,7 @@ static void timer_hit(void *opaque)
static
void
timer_reset
(
DeviceState
*
d
)
{
LM32TimerState
*
s
=
container_of
(
d
,
LM32TimerState
,
busdev
.
qdev
);
LM32TimerState
*
s
=
LM32_TIMER
(
d
);
int
i
;
for
(
i
=
0
;
i
<
R_MAX
;
i
++
)
{
...
...
@@ -172,7 +176,7 @@ static void timer_reset(DeviceState *d)
static
int
lm32_timer_init
(
SysBusDevice
*
dev
)
{
LM32TimerState
*
s
=
FROM_SYSBUS
(
typeof
(
*
s
),
dev
);
LM32TimerState
*
s
=
LM32_TIMER
(
dev
);
sysbus_init_irq
(
dev
,
&
s
->
irq
);
...
...
@@ -217,7 +221,7 @@ static void lm32_timer_class_init(ObjectClass *klass, void *data)
}
static
const
TypeInfo
lm32_timer_info
=
{
.
name
=
"lm32-timer"
,
.
name
=
TYPE_LM32_TIMER
,
.
parent
=
TYPE_SYS_BUS_DEVICE
,
.
instance_size
=
sizeof
(
LM32TimerState
),
.
class_init
=
lm32_timer_class_init
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录