qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v1 11/16] qdev: gpio: delete NamedGPIOList::out


From: Peter Crosthwaite
Subject: [Qemu-devel] [PATCH v1 11/16] qdev: gpio: delete NamedGPIOList::out
Date: Sun, 3 Aug 2014 18:57:32 -0700

All users of GPIO outputs are fully QOMified, using QOM properties to
access the GPIO data. Delete.

Signed-off-by: Peter Crosthwaite <address@hidden>
---

 hw/core/qdev.c         | 1 -
 include/hw/qdev-core.h | 1 -
 2 files changed, 2 deletions(-)

diff --git a/hw/core/qdev.c b/hw/core/qdev.c
index 4cbf773..77b0b09 100644
--- a/hw/core/qdev.c
+++ b/hw/core/qdev.c
@@ -368,7 +368,6 @@ void qdev_init_gpio_out_named(DeviceState *dev, qemu_irq 
*pins,
     assert(gpio_list->num_in == 0 || !name);
     assert(gpio_list->num_out == 0);
     gpio_list->num_out = n;
-    gpio_list->out = pins;
 
     char *propname = g_strdup_printf("%s[*]", name ? name : 
"unnamed-gpio-out");
     for (i = 0; i < n; ++i) {
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h
index e17e19b..d3326b1 100644
--- a/include/hw/qdev-core.h
+++ b/include/hw/qdev-core.h
@@ -137,7 +137,6 @@ struct NamedGPIOList {
     char *name;
     qemu_irq *in;
     int num_in;
-    qemu_irq *out;
     int num_out;
     QLIST_ENTRY(NamedGPIOList) node;
 };
-- 
2.0.1.1.gfbfc394




reply via email to

[Prev in Thread] Current Thread [Next in Thread]