diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-04 11:08:36 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-01-27 10:50:34 -0600 |
commit | 30fbb9fc7cd73abc32ff71ceb59e9a3be37ac128 (patch) | |
tree | 25aa7ff76f8db648bff269cf169c00d28260ec1f /hw/i8259_common.c | |
parent | 32fea4025bfb80f2dbc5c3ce415703af28d85f63 (diff) |
qdev: move qdev->info to class
Right now, DeviceInfo acts as the class for qdev. In order to switch to a
proper ObjectClass derivative, we need to ween all of the callers off of
interacting directly with the info pointer.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/i8259_common.c')
-rw-r--r-- | hw/i8259_common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/i8259_common.c b/hw/i8259_common.c index e515876c48..7536897fec 100644 --- a/hw/i8259_common.c +++ b/hw/i8259_common.c @@ -49,7 +49,7 @@ static void pic_dispatch_pre_save(void *opaque) { PICCommonState *s = opaque; PICCommonInfo *info = - DO_UPCAST(PICCommonInfo, isadev.qdev, s->dev.qdev.info); + DO_UPCAST(PICCommonInfo, isadev.qdev, qdev_get_info(&s->dev.qdev)); if (info->pre_save) { info->pre_save(s); @@ -60,7 +60,7 @@ static int pic_dispatch_post_load(void *opaque, int version_id) { PICCommonState *s = opaque; PICCommonInfo *info = - DO_UPCAST(PICCommonInfo, isadev.qdev, s->dev.qdev.info); + DO_UPCAST(PICCommonInfo, isadev.qdev, qdev_get_info(&s->dev.qdev)); if (info->post_load) { info->post_load(s); @@ -72,7 +72,7 @@ static int pic_init_common(ISADevice *dev) { PICCommonState *s = DO_UPCAST(PICCommonState, dev, dev); PICCommonInfo *info = - DO_UPCAST(PICCommonInfo, isadev.qdev, dev->qdev.info); + DO_UPCAST(PICCommonInfo, isadev.qdev, qdev_get_info(&dev->qdev)); info->init(s); |