From patchwork Mon Feb 21 14:58:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 183 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:40:41 -0000 Delivered-To: patches@linaro.org Received: by 10.224.19.208 with SMTP id c16cs187086qab; Mon, 21 Feb 2011 06:58:29 -0800 (PST) Received: by 10.227.10.84 with SMTP id o20mr1321416wbo.140.1298300308811; Mon, 21 Feb 2011 06:58:28 -0800 (PST) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk [81.2.115.146]) by mx.google.com with ESMTPS id r15si7715449wec.206.2011.02.21.06.58.28 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 21 Feb 2011 06:58:28 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1PrXDW-0004Nv-91; Mon, 21 Feb 2011 14:58:26 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Cc: patches@linaro.org Subject: [PATCH] hw/irq.h: Remove unused SetIRQFunc typedef Date: Mon, 21 Feb 2011 14:58:26 +0000 Message-Id: <1298300306-16832-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.3 Remove the typedef SetIRQFunc, as it is not used by anything. Signed-off-by: Peter Maydell --- hw/irq.h | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/hw/irq.h b/hw/irq.h index 5daae44..f7849ed 100644 --- a/hw/irq.h +++ b/hw/irq.h @@ -3,9 +3,7 @@ /* Generic IRQ/GPIO pin infrastructure. */ -/* FIXME: Rmove one of these. */ typedef void (*qemu_irq_handler)(void *opaque, int n, int level); -typedef void SetIRQFunc(void *opaque, int irq_num, int level); void qemu_set_irq(qemu_irq irq, int level);