diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-10-23 09:43:17 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-10-23 09:43:17 +0000 |
commit | 2543fc328ae34869e603b36769d82f2ffb26a4f0 (patch) | |
tree | d316bf36e2fa282c588144a0908bde11606f76ff /mdk-stage1 | |
parent | 7465fa874e6651684768344d06dfe959d69f0733 (diff) | |
download | drakx-2543fc328ae34869e603b36769d82f2ffb26a4f0.tar drakx-2543fc328ae34869e603b36769d82f2ffb26a4f0.tar.gz drakx-2543fc328ae34869e603b36769d82f2ffb26a4f0.tar.bz2 drakx-2543fc328ae34869e603b36769d82f2ffb26a4f0.tar.xz drakx-2543fc328ae34869e603b36769d82f2ffb26a4f0.zip |
do not probe PCI devices when probing USB bus
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/probing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/probing.c b/mdk-stage1/probing.c index 145343cc5..f5d7ef545 100644 --- a/mdk-stage1/probing.c +++ b/mdk-stage1/probing.c @@ -303,7 +303,7 @@ void probe_that_type(enum driver_type type, enum media_bus bus __attribute__ ((u static int already_loaded_usb_scsi = 0; /* ---- PCI probe ---------------------------------------------- */ - { + if (bus != BUS_USB) { struct pciusb_entries entries; char **pci_modules; unsigned int pci_modules_len = 0; |