Browse Source

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>
Chen Yufei 13 years ago
parent
commit
b920df5c79
1 changed files with 0 additions and 1 deletions
  1. 0 1
      module.c

+ 0 - 1
module.c

@@ -19,7 +19,6 @@
 
 
 typedef struct ModuleEntry
 typedef struct ModuleEntry
 {
 {
-    module_init_type type;
     void (*init)(void);
     void (*init)(void);
     QTAILQ_ENTRY(ModuleEntry) node;
     QTAILQ_ENTRY(ModuleEntry) node;
 } ModuleEntry;
 } ModuleEntry;