summaryrefslogtreecommitdiffstats
path: root/isys/probe.h
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-09 16:52:57 +0000
committerErik Troan <ewt@redhat.com>2000-05-09 16:52:57 +0000
commit39cebd1dd0360319d5a2a73411773bba74ba8d7a (patch)
tree095fa3fc1e88be48f1ff6785b74f6cec7e2a5337 /isys/probe.h
parent909d3d8b819379410623debde7245f7d0dcee0b1 (diff)
downloadanaconda-39cebd1dd0360319d5a2a73411773bba74ba8d7a.tar.gz
anaconda-39cebd1dd0360319d5a2a73411773bba74ba8d7a.tar.xz
anaconda-39cebd1dd0360319d5a2a73411773bba74ba8d7a.zip
added code tags
Diffstat (limited to 'isys/probe.h')
-rw-r--r--isys/probe.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/isys/probe.h b/isys/probe.h
index f236a9845..ea14b5d94 100644
--- a/isys/probe.h
+++ b/isys/probe.h
@@ -7,6 +7,7 @@ struct kddevice {
char * name; /* malloced */
char * model;
enum deviceClass class;
+ int code;
};
struct knownDevices {
@@ -16,9 +17,9 @@ struct knownDevices {
};
struct knownDevices kdInit(void);
-int kdFindNetList(struct knownDevices * devices);
-int kdFindIdeList(struct knownDevices * devices);
-int kdFindScsiList(struct knownDevices * devices);
+int kdFindNetList(struct knownDevices * devices, int code);
+int kdFindIdeList(struct knownDevices * devices, int code);
+int kdFindScsiList(struct knownDevices * devices, int code);
void kdFree(struct knownDevices * devices);
void kdAddDevice(struct knownDevices * devices, enum deviceClass devClass,
char * devName, char * devModel);