summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--isys/isys.h5
-rw-r--r--isys/moduleinfo.c5
2 files changed, 5 insertions, 5 deletions
diff --git a/isys/isys.h b/isys/isys.h
index 4b7557fe7..8e2364b07 100644
--- a/isys/isys.h
+++ b/isys/isys.h
@@ -20,6 +20,11 @@ struct moduleInfo {
struct moduleArg * args;
};
+struct moduleInfoSet_s {
+ struct moduleInfo * moduleList;
+ int numModules;
+};
+
typedef struct moduleInfoSet_s * moduleInfoSet;
moduleInfoSet isysNewModuleInfoSet(void);
diff --git a/isys/moduleinfo.c b/isys/moduleinfo.c
index 186f60f13..a5c5b2dcf 100644
--- a/isys/moduleinfo.c
+++ b/isys/moduleinfo.c
@@ -8,11 +8,6 @@
#include "isys.h"
-struct moduleInfoSet_s {
- struct moduleInfo * moduleList;
- int numModules;
-};
-
struct moduleInfo * isysGetModuleList(moduleInfoSet mis,
enum driverMajor major) {
struct moduleInfo * miList, * next;