Skip to content

Commit

Permalink
exynos4210_rtc: QOM cast cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
afaerber committed Jul 29, 2013
1 parent 25fce9a commit 3ddacf2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions hw/timer/exynos4210_rtc.c
Expand Up @@ -79,8 +79,13 @@

#define RTC_BASE_FREQ 32768

#define TYPE_EXYNOS4210_RTC "exynos4210.rtc"
#define EXYNOS4210_RTC(obj) \
OBJECT_CHECK(Exynos4210RTCState, (obj), TYPE_EXYNOS4210_RTC)

typedef struct Exynos4210RTCState {
SysBusDevice busdev;
SysBusDevice parent_obj;

MemoryRegion iomem;

/* registers */
Expand Down Expand Up @@ -507,7 +512,7 @@ static void exynos4210_rtc_write(void *opaque, hwaddr offset,
*/
static void exynos4210_rtc_reset(DeviceState *d)
{
Exynos4210RTCState *s = (Exynos4210RTCState *)d;
Exynos4210RTCState *s = EXYNOS4210_RTC(d);

qemu_get_timedate(&s->current_tm, 0);

Expand Down Expand Up @@ -544,7 +549,7 @@ static const MemoryRegionOps exynos4210_rtc_ops = {
*/
static int exynos4210_rtc_init(SysBusDevice *dev)
{
Exynos4210RTCState *s = FROM_SYSBUS(Exynos4210RTCState, dev);
Exynos4210RTCState *s = EXYNOS4210_RTC(dev);
QEMUBH *bh;

bh = qemu_bh_new(exynos4210_rtc_tick, s);
Expand Down Expand Up @@ -577,7 +582,7 @@ static void exynos4210_rtc_class_init(ObjectClass *klass, void *data)
}

static const TypeInfo exynos4210_rtc_info = {
.name = "exynos4210.rtc",
.name = TYPE_EXYNOS4210_RTC,
.parent = TYPE_SYS_BUS_DEVICE,
.instance_size = sizeof(Exynos4210RTCState),
.class_init = exynos4210_rtc_class_init,
Expand Down

0 comments on commit 3ddacf2

Please sign in to comment.