From patchwork Thu Feb 26 13:28:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Huth X-Patchwork-Id: 443909 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 5731F140082 for ; Fri, 27 Feb 2015 00:30:10 +1100 (AEDT) Received: from localhost ([::1]:59019 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQyW0-0005MU-7a for incoming@patchwork.ozlabs.org; Thu, 26 Feb 2015 08:30:08 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57123) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQyUL-0001YS-89 for qemu-devel@nongnu.org; Thu, 26 Feb 2015 08:28:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YQyUB-0007dP-IE for qemu-devel@nongnu.org; Thu, 26 Feb 2015 08:28:25 -0500 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:47844) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQyUB-0007cr-8d for qemu-devel@nongnu.org; Thu, 26 Feb 2015 08:28:15 -0500 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 26 Feb 2015 13:28:14 -0000 Received: from d06dlp02.portsmouth.uk.ibm.com (9.149.20.14) by e06smtp17.uk.ibm.com (192.168.101.147) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 26 Feb 2015 13:28:12 -0000 Received: from b06cxnps3075.portsmouth.uk.ibm.com (d06relay10.portsmouth.uk.ibm.com [9.149.109.195]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id 33F33219005E; Thu, 26 Feb 2015 13:28:05 +0000 (GMT) Received: from d06av04.portsmouth.uk.ibm.com (d06av04.portsmouth.uk.ibm.com [9.149.37.216]) by b06cxnps3075.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t1QDSCmr12124594; Thu, 26 Feb 2015 13:28:12 GMT Received: from d06av04.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t1QDSBa0032723; Thu, 26 Feb 2015 06:28:11 -0700 Received: from oc7435384737.ibm.com (sig-9-79-14-249.uk.ibm.com [9.79.14.249]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t1QDS8Wu032630; Thu, 26 Feb 2015 06:28:10 -0700 From: Thomas Huth To: qemu-trivial@nongnu.org Date: Thu, 26 Feb 2015 14:28:08 +0100 Message-Id: <1424957288-24408-4-git-send-email-thuth@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1424957288-24408-1-git-send-email-thuth@linux.vnet.ibm.com> References: <1424957288-24408-1-git-send-email-thuth@linux.vnet.ibm.com> X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15022613-0029-0000-0000-00000385CC20 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 195.75.94.113 Cc: qemu-devel@nongnu.org, Thomas Huth Subject: [Qemu-devel] [PATCH 3/3] xen: Remove xen_cmos_set_s3_resume() X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The function is not used anymore, and thus can be deleted. Signed-off-by: Thomas Huth Acked-by: Stefano Stabellini --- include/hw/xen/xen.h | 1 - xen-hvm-stub.c | 4 ---- 2 files changed, 0 insertions(+), 5 deletions(-) diff --git a/include/hw/xen/xen.h b/include/hw/xen/xen.h index b0ed04c..4356af4 100644 --- a/include/hw/xen/xen.h +++ b/include/hw/xen/xen.h @@ -32,7 +32,6 @@ int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num); void xen_piix3_set_irq(void *opaque, int irq_num, int level); void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len); void xen_hvm_inject_msi(uint64_t addr, uint32_t data); -void xen_cmos_set_s3_resume(void *opaque, int irq, int level); qemu_irq *xen_interrupt_controller_init(void); diff --git a/xen-hvm-stub.c b/xen-hvm-stub.c index 2d98696..46867d8 100644 --- a/xen-hvm-stub.c +++ b/xen-hvm-stub.c @@ -30,10 +30,6 @@ void xen_hvm_inject_msi(uint64_t addr, uint32_t data) { } -void xen_cmos_set_s3_resume(void *opaque, int irq, int level) -{ -} - void xen_ram_alloc(ram_addr_t ram_addr, ram_addr_t size, MemoryRegion *mr) { }