diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-08-28 10:02:46 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2020-08-28 10:02:46 +0100 |
commit | f129360ca15723e43a8c44d1a2f025c0df1270cc (patch) | |
tree | 64d1139d80a0c431eefb8017cddfd3a56f01cc8a /hw/core | |
parent | 3ab928789537b8eaf4102ca4602fcd1630b1ec5e (diff) | |
download | qemu-f129360ca15723e43a8c44d1a2f025c0df1270cc.zip qemu-f129360ca15723e43a8c44d1a2f025c0df1270cc.tar.gz qemu-f129360ca15723e43a8c44d1a2f025c0df1270cc.tar.bz2 |
hw/qdev-clock: Uninline qdev_connect_clock_in()
We want to assert the device is not realized. To avoid overloading
this header including "hw/qdev-core.h", uninline the function first.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 20200803105647.22223-4-f4bug@amsat.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/core')
-rw-r--r-- | hw/core/qdev-clock.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/core/qdev-clock.c b/hw/core/qdev-clock.c index 5cc1e82..f139b68 100644 --- a/hw/core/qdev-clock.c +++ b/hw/core/qdev-clock.c @@ -183,3 +183,8 @@ Clock *qdev_alias_clock(DeviceState *dev, const char *name, return ncl->clock; } + +void qdev_connect_clock_in(DeviceState *dev, const char *name, Clock *source) +{ + clock_set_source(qdev_get_clock_in(dev, name), source); +} |