From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57931) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9bcn-0003M0-Ew for qemu-devel@nongnu.org; Mon, 19 Mar 2012 08:23:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S9bcl-0000Ki-EY for qemu-devel@nongnu.org; Mon, 19 Mar 2012 08:23:45 -0400 Received: from e06smtp18.uk.ibm.com ([195.75.94.114]:37722) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9bcl-0000KF-5q for qemu-devel@nongnu.org; Mon, 19 Mar 2012 08:23:43 -0400 Received: from /spool/local by e06smtp18.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 19 Mar 2012 12:23:36 -0000 Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1307.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q2JCN4352637854 for ; Mon, 19 Mar 2012 12:23:04 GMT Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q2JCN4kS006545 for ; Mon, 19 Mar 2012 06:23:04 -0600 From: Stefan Hajnoczi Date: Mon, 19 Mar 2012 12:22:53 +0000 Message-Id: <1332159780-31781-2-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1332159780-31781-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1332159780-31781-1-git-send-email-stefanha@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 1/8] Remove type field in ModuleEntry as it's not used List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Chen Yufei , qemu-devel@nongnu.org, Stefan Hajnoczi From: Chen Yufei Signed-off-by: Chen Yufei Acked-by: Andreas Färber Signed-off-by: Stefan Hajnoczi --- module.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/module.c b/module.c index 106a969..c3a6da7 100644 --- a/module.c +++ b/module.c @@ -19,7 +19,6 @@ typedef struct ModuleEntry { - module_init_type type; void (*init)(void); QTAILQ_ENTRY(ModuleEntry) node; } ModuleEntry; -- 1.7.9.1