Re-implement as a link setter. This should allow the QOM framework to keep track of ref counts properly etc.
Signed-off-by: Peter Crosthwaite <peter.crosthwa...@xilinx.com> --- hw/core/qdev.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hw/core/qdev.c b/hw/core/qdev.c index 7b1430b..94b4e0e 100644 --- a/hw/core/qdev.c +++ b/hw/core/qdev.c @@ -403,10 +403,11 @@ qemu_irq qdev_get_gpio_in(DeviceState *dev, int n) void qdev_connect_gpio_out_named(DeviceState *dev, const char *name, int n, qemu_irq pin) { - NamedGPIOList *gpio_list = qdev_get_named_gpio_list(dev, name); + char *propname = g_strdup_printf("%s-%d", + name ? name : "unnamed-gpio-out", n); - assert(n >= 0 && n < gpio_list->num_out); - gpio_list->out[n] = pin; + object_property_set_link(OBJECT(dev), OBJECT(pin), propname, &error_abort); + g_free(propname); } void qdev_connect_gpio_out(DeviceState * dev, int n, qemu_irq pin) -- 1.9.3.1.ga73a6ad