diff options
| author | Peter Xu <peterx@redhat.com> | 2024-11-21 14:21:50 -0500 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-20 17:44:55 +0100 |
| commit | e469b331cd1bb2a3d4a0b02b37390fd79947e225 (patch) | |
| tree | 7d8a212bab577d819dc7e39ea14dc7300382cb15 /hw/arm/stellaris.c | |
| parent | 678bf8f22a2cbbaea465d1ce181e4367cb9760ae (diff) | |
| download | focaccia-qemu-e469b331cd1bb2a3d4a0b02b37390fd79947e225.tar.gz focaccia-qemu-e469b331cd1bb2a3d4a0b02b37390fd79947e225.zip | |
qom: Add TYPE_CONTAINER macro
Provide a macro for the container type across QEMU source tree, rather than hard code it every time. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Peter Xu <peterx@redhat.com> Message-ID: <20241121192202.4155849-2-peterx@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'hw/arm/stellaris.c')
| -rw-r--r-- | hw/arm/stellaris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/stellaris.c b/hw/arm/stellaris.c index 7fc13d96c9..e31884b23e 100644 --- a/hw/arm/stellaris.c +++ b/hw/arm/stellaris.c @@ -1053,7 +1053,7 @@ static void stellaris_init(MachineState *ms, stellaris_board_info *board) flash_size = (((board->dc0 & 0xffff) + 1) << 1) * 1024; sram_size = ((board->dc0 >> 18) + 1) * 1024; - soc_container = object_new("container"); + soc_container = object_new(TYPE_CONTAINER); object_property_add_child(OBJECT(ms), "soc", soc_container); /* Flash programming is done via the SCU, so pretend it is ROM. */ |