summaryrefslogtreecommitdiffstats
path: root/loader2/loader.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/loader.c
parentffe28b59632dfcda0766b9fed242f16845451e47 (diff)
downloadanaconda-13d29d6d5aa428644a7db8189e1ccd9250c79808.tar.gz
anaconda-13d29d6d5aa428644a7db8189e1ccd9250c79808.tar.xz
anaconda-13d29d6d5aa428644a7db8189e1ccd9250c79808.zip
lots of probe_all nuking
Diffstat (limited to 'loader2/loader.c')
-rw-r--r--loader2/loader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader2/loader.c b/loader2/loader.c
index 58fe478f5..89c7fa895 100644
--- a/loader2/loader.c
+++ b/loader2/loader.c
@@ -362,7 +362,7 @@ static void checkForHardDrives(int * flagsPtr) {
int i;
struct device ** devices;
- devices = probeDevices(CLASS_HD, BUS_UNSPEC, PROBE_ALL);
+ devices = probeDevices(CLASS_HD, BUS_UNSPEC, 0);
if (devices)
return;
@@ -633,7 +633,7 @@ static void checkForRam(int flags) {
static int haveDeviceOfType(int type) {
struct device ** devices;
- devices = probeDevices(type, BUS_UNSPEC, PROBE_ALL);
+ devices = probeDevices(type, BUS_UNSPEC, 0);
if (devices)
return 1;
return 0;