summaryrefslogtreecommitdiffstats
path: root/module.c
diff options
context:
space:
mode:
authorChen Yufei2012-03-07 16:36:43 +0100
committerStefan Hajnoczi2012-03-19 11:52:52 +0100
commitb920df5c79f64fe9617ef070cd6bda1738172f84 (patch)
tree9134ac6bc7825472330ff4af189099f8eeb2bdc4 /module.c
parenttcg: fix sparc host for AREG0 free operation (diff)
downloadqemu-b920df5c79f64fe9617ef070cd6bda1738172f84.tar.gz
qemu-b920df5c79f64fe9617ef070cd6bda1738172f84.tar.xz
qemu-b920df5c79f64fe9617ef070cd6bda1738172f84.zip
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;