summaryrefslogtreecommitdiff
path: root/module.c
diff options
context:
space:
mode:
authorChen Yufei <cyfdecyf@gmail.com>2012-03-07 23:36:43 +0800
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-03-19 10:52:52 +0000
commitb920df5c79f64fe9617ef070cd6bda1738172f84 (patch)
tree9134ac6bc7825472330ff4af189099f8eeb2bdc4 /module.c
parent5bd33de6635577744b3c10dd3913bfe8c5ffaf40 (diff)
downloadqemu-b920df5c79f64fe9617ef070cd6bda1738172f84.tar.gz
Remove type field in ModuleEntry as it's not used
Signed-off-by: Chen Yufei <cyfdecyf@gmail.com> Acked-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'module.c')
-rw-r--r--module.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/module.c b/module.c
index 106a969449..c3a6da7a86 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;