summaryrefslogtreecommitdiff
path: root/hw/intc/xics.c
diff options
context:
space:
mode:
authorCédric Le Goater <clg@kaod.org>2017-02-27 15:29:18 +0100
committerDavid Gibson <david@gibson.dropbear.id.au>2017-03-01 11:23:39 +1100
commitbe1fe35199e29bd662b9c7e36c97ccb7122f3fee (patch)
tree9a05e69f893eb0caa535b9b3af6060957680bc7d /hw/intc/xics.c
parent2cd908d0add803886c310084145fecc93f080a63 (diff)
downloadqemu-be1fe35199e29bd662b9c7e36c97ccb7122f3fee.tar.gz
ppc/xics: remove xics_find_source()
It is not used anymore now that we have the QOM interface for XICS. Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/intc/xics.c')
-rw-r--r--hw/intc/xics.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/hw/intc/xics.c b/hw/intc/xics.c
index 23e45a87d4..a71d3858b1 100644
--- a/hw/intc/xics.c
+++ b/hw/intc/xics.c
@@ -756,18 +756,6 @@ static const TypeInfo xics_fabric_info = {
/*
* Exported functions
*/
-ICSState *xics_find_source(XICSState *xics, int irq)
-{
- ICSState *ics;
-
- QLIST_FOREACH(ics, &xics->ics, list) {
- if (ics_valid_irq(ics, irq)) {
- return ics;
- }
- }
- return NULL;
-}
-
qemu_irq xics_get_qirq(XICSFabric *xi, int irq)
{
XICSFabricClass *xic = XICS_FABRIC_GET_CLASS(xi);