diff options
author | Peter Crosthwaite | 2014-02-26 18:20:08 +0100 |
---|---|---|
committer | Peter Maydell | 2014-02-26 18:20:08 +0100 |
commit | 1c8be73d4ec576450f315d6a94fc0c89e200c479 (patch) | |
tree | e05e7f9d2543046b90bbd09950dfe4605d6fd63e /hw/dma | |
parent | dma/pl330: printf format type sweep. (diff) | |
download | qemu-1c8be73d4ec576450f315d6a94fc0c89e200c479.tar.gz qemu-1c8be73d4ec576450f315d6a94fc0c89e200c479.tar.xz qemu-1c8be73d4ec576450f315d6a94fc0c89e200c479.zip |
dma/pl330: Rename parent_obj
As per current QOM conventions.
Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: abb137347ea1ee9c31487b544f3d5435fb17f6a4.1393372019.git.peter.crosthwaite@xilinx.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/dma')
-rw-r--r-- | hw/dma/pl330.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/dma/pl330.c b/hw/dma/pl330.c index a4cc6f9249..8046a6f810 100644 --- a/hw/dma/pl330.c +++ b/hw/dma/pl330.c @@ -227,7 +227,8 @@ static const VMStateDescription vmstate_pl330_queue = { }; struct PL330State { - SysBusDevice busdev; + SysBusDevice parent_obj; + MemoryRegion iomem; qemu_irq irq_abort; qemu_irq *irq; |