summaryrefslogtreecommitdiffstats
path: root/isys/isys.h
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-06-03 00:42:10 +0000
committerErik Troan <ewt@redhat.com>2000-06-03 00:42:10 +0000
commit186fef98e666786b9881b2c154ea60de8a217b6d (patch)
treecb7a042d7214c1d4903d124b04cc31f078364007 /isys/isys.h
parent93d143385829ca1685e003dff08efa79b1c1dec1 (diff)
downloadanaconda-186fef98e666786b9881b2c154ea60de8a217b6d.tar.gz
anaconda-186fef98e666786b9881b2c154ea60de8a217b6d.tar.xz
anaconda-186fef98e666786b9881b2c154ea60de8a217b6d.zip
driver disks seem to work now :-)
Diffstat (limited to 'isys/isys.h')
-rw-r--r--isys/isys.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/isys/isys.h b/isys/isys.h
index ae0317396..f91ba47c2 100644
--- a/isys/isys.h
+++ b/isys/isys.h
@@ -12,8 +12,6 @@ struct moduleArg {
};
#define MI_FLAG_NOMISCARGS (1 << 0)
-enum miLocationTypes { MI_LOCATION_NONE, MI_LOCATION_DISKNAME,
- MI_LOCATION_DIRECTORY };
struct moduleInfo {
char * moduleName;
@@ -23,7 +21,6 @@ struct moduleInfo {
int numArgs;
struct moduleArg * args;
int flags;
- enum miLocationTypes location;
void * locationID;
};
@@ -36,8 +33,7 @@ typedef struct moduleInfoSet_s * moduleInfoSet;
moduleInfoSet isysNewModuleInfoSet(void);
void isysFreeModuleInfoSet(moduleInfoSet mis);
-int isysReadModuleInfo(const char * filename, moduleInfoSet mis,
- enum miLocationTypes identType, void * path);
+int isysReadModuleInfo(const char * filename, moduleInfoSet mis, void * path);
struct moduleInfo * isysFindModuleInfo(moduleInfoSet mis,
const char * moduleName);