diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-09 15:02:56 -0600 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-03 10:41:06 -0600 |
| commit | d307af795d9fb25680339288a10c9e297e102826 (patch) | |
| tree | 2fae1b3bd2db550e686ecd3d3031600b099cad4e /hw/intel-hda.c | |
| parent | 39bffca2030950ef6efe57c2fac8327a45ae1015 (diff) | |
| download | focaccia-qemu-d307af795d9fb25680339288a10c9e297e102826.tar.gz focaccia-qemu-d307af795d9fb25680339288a10c9e297e102826.zip | |
qdev: kill off DeviceInfo
It is no longer used in the tree since everything is done natively through QEMU Object Model. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/intel-hda.c')
| -rw-r--r-- | hw/intel-hda.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/intel-hda.c b/hw/intel-hda.c index 9e4a31f62d..83c42d58b6 100644 --- a/hw/intel-hda.c +++ b/hw/intel-hda.c @@ -47,7 +47,7 @@ void hda_codec_bus_init(DeviceState *dev, HDACodecBus *bus, bus->xfer = xfer; } -static int hda_codec_dev_init(DeviceState *qdev, DeviceInfo *base) +static int hda_codec_dev_init(DeviceState *qdev) { HDACodecBus *bus = DO_UPCAST(HDACodecBus, qbus, qdev->parent_bus); HDACodecDevice *dev = DO_UPCAST(HDACodecDevice, qdev, qdev); |