summaryrefslogtreecommitdiffstats
path: root/isys/probe.h
diff options
context:
space:
mode:
Diffstat (limited to 'isys/probe.h')
-rw-r--r--isys/probe.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/isys/probe.h b/isys/probe.h
index 4c4c29556..f236a9845 100644
--- a/isys/probe.h
+++ b/isys/probe.h
@@ -1,16 +1,16 @@
#ifndef H_PROBE
#define H_PROBE
-struct device {
+#include "kudzu/kudzu.h"
+
+struct kddevice {
char * name; /* malloced */
char * model;
- enum deviceClass { DEVICE_UNKNOWN, DEVICE_DISK, DEVICE_CDROM, DEVICE_NET,
- DEVICE_TAPE }
- class;
+ enum deviceClass class;
};
struct knownDevices {
- struct device * known;
+ struct kddevice * known;
int numKnown;
int numKnownAlloced;
};