From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35923) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bG8kG-0000R9-1Z for qemu-devel@nongnu.org; Thu, 23 Jun 2016 13:48:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bG8kB-0004h1-DU for qemu-devel@nongnu.org; Thu, 23 Jun 2016 13:48:51 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:26582 helo=mx0a-001b2d01.pphosted.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bG8kB-0004gj-8Y for qemu-devel@nongnu.org; Thu, 23 Jun 2016 13:48:47 -0400 Received: from pps.filterd (m0098417.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.11/8.16.0.11) with SMTP id u5NHi3ou128443 for ; Thu, 23 Jun 2016 13:48:46 -0400 Received: from e23smtp06.au.ibm.com (e23smtp06.au.ibm.com [202.81.31.148]) by mx0a-001b2d01.pphosted.com with ESMTP id 23q9nd4rs8-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Thu, 23 Jun 2016 13:48:46 -0400 Received: from localhost by e23smtp06.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 24 Jun 2016 03:48:43 +1000 From: Nikunj A Dadhania Date: Thu, 23 Jun 2016 23:17:23 +0530 In-Reply-To: <1466704050-15108-1-git-send-email-nikunj@linux.vnet.ibm.com> References: <1466704050-15108-1-git-send-email-nikunj@linux.vnet.ibm.com> Message-Id: <1466704050-15108-5-git-send-email-nikunj@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v1 04/11] ppc/xics: Remove unused xics_set_irq_type() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-ppc@nongnu.org, david@gibson.dropbear.id.au Cc: qemu-devel@nongnu.org, clg@kaod.org, nikunj@linux.vnet.ibm.com, Benjamin Herrenschmidt From: Benjamin Herrenschmidt Signed-off-by: Benjamin Herrenschmidt Reviewed-by: David Gibson Signed-off-by: Nikunj A Dadhania --- hw/intc/xics.c | 11 ----------- include/hw/ppc/xics.h | 1 - 2 files changed, 12 deletions(-) diff --git a/hw/intc/xics.c b/hw/intc/xics.c index 40969ee..4f15a2d 100644 --- a/hw/intc/xics.c +++ b/hw/intc/xics.c @@ -695,17 +695,6 @@ void ics_set_irq_type(ICSState *ics, int srcno, bool lsi) lsi ? XICS_FLAGS_IRQ_LSI : XICS_FLAGS_IRQ_MSI; } -void xics_set_irq_type(XICSState *icp, int irq, bool lsi) -{ - int src = xics_find_source(icp, irq); - ICSState *ics; - - assert(src >= 0); - - ics = &icp->ics[src]; - ics_set_irq_type(ics, irq - ics->offset, lsi); -} - static void xics_register_types(void) { type_register_static(&xics_common_info); diff --git a/include/hw/ppc/xics.h b/include/hw/ppc/xics.h index 32ea706..2a9b91d 100644 --- a/include/hw/ppc/xics.h +++ b/include/hw/ppc/xics.h @@ -170,7 +170,6 @@ struct ICSIRQState { #define XICS_IRQS_SPAPR 1024 qemu_irq xics_get_qirq(XICSState *icp, int irq); -void xics_set_irq_type(XICSState *icp, int irq, bool lsi); int xics_spapr_alloc(XICSState *icp, int src, int irq_hint, bool lsi, Error **errp); int xics_spapr_alloc_block(XICSState *icp, int src, int num, bool lsi, -- 2.7.4