summaryrefslogtreecommitdiffstats
path: root/loader2/modules.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-03-04 23:46:24 +0000
committerJeremy Katz <katzj@redhat.com>2004-03-04 23:46:24 +0000
commit13d29d6d5aa428644a7db8189e1ccd9250c79808 (patch)
tree2378a76162fc47656068e56e4d5ce80ff8a13499 /loader2/modules.c
parentffe28b59632dfcda0766b9fed242f16845451e47 (diff)
downloadanaconda-13d29d6d5aa428644a7db8189e1ccd9250c79808.tar.gz
anaconda-13d29d6d5aa428644a7db8189e1ccd9250c79808.tar.xz
anaconda-13d29d6d5aa428644a7db8189e1ccd9250c79808.zip
lots of probe_all nuking
Diffstat (limited to 'loader2/modules.c')
-rw-r--r--loader2/modules.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader2/modules.c b/loader2/modules.c
index 289d1a624..74637bb15 100644
--- a/loader2/modules.c
+++ b/loader2/modules.c
@@ -92,13 +92,13 @@ static int scsiDiskCount(void) {
struct device ** devices;
int i = 0;
- devices = probeDevices(CLASS_HD, BUS_SCSI, PROBE_ALL);
+ devices = probeDevices(CLASS_HD, BUS_SCSI, 0);
if (devices) {
for (; devices[i]; i++);
free(devices);
}
/* have to probe for usb floppies too */
- devices = probeDevices(CLASS_FLOPPY, BUS_SCSI, PROBE_ALL);
+ devices = probeDevices(CLASS_FLOPPY, BUS_SCSI, 0);
if (devices) {
for (; devices[i]; i++);
free(devices);