summaryrefslogtreecommitdiffstats
path: root/isys/isys.h
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-08-07 15:19:33 +0000
committerErik Troan <ewt@redhat.com>1999-08-07 15:19:33 +0000
commitcd12a64351f50331c802f9ac50d273586bc3f4f0 (patch)
tree9251757de0a6d80163165c02592dc6fdfeca61bb /isys/isys.h
parenta2ed1fa10a0636b84e6a8d3839305edeeee35db1 (diff)
downloadanaconda-cd12a64351f50331c802f9ac50d273586bc3f4f0.tar.gz
anaconda-cd12a64351f50331c802f9ac50d273586bc3f4f0.tar.xz
anaconda-cd12a64351f50331c802f9ac50d273586bc3f4f0.zip
added field for module flags
Diffstat (limited to 'isys/isys.h')
-rw-r--r--isys/isys.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/isys/isys.h b/isys/isys.h
index 8e2364b07..bfa9aca89 100644
--- a/isys/isys.h
+++ b/isys/isys.h
@@ -11,6 +11,8 @@ struct moduleArg {
char * description;
};
+#define MI_FLAG_NOMISCARGS (1 << 0)
+
struct moduleInfo {
char * moduleName;
char * description;
@@ -18,6 +20,7 @@ struct moduleInfo {
enum driverMinor minor;
int numArgs;
struct moduleArg * args;
+ int flags;
};
struct moduleInfoSet_s {