diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-07-26 10:26:33 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-07-26 10:26:33 +0000 |
commit | da0892b3071b9ddaaa4cdf80728413d2396c474d (patch) | |
tree | 9a2e9701e7abbcde4e023f33b7c2e702e659eae4 | |
parent | cc807715c78fc998e3d486bc5724e903b0e229a0 (diff) | |
download | drakx-da0892b3071b9ddaaa4cdf80728413d2396c474d.tar drakx-da0892b3071b9ddaaa4cdf80728413d2396c474d.tar.gz drakx-da0892b3071b9ddaaa4cdf80728413d2396c474d.tar.bz2 drakx-da0892b3071b9ddaaa4cdf80728413d2396c474d.tar.xz drakx-da0892b3071b9ddaaa4cdf80728413d2396c474d.zip |
silently load usb controllers
-rw-r--r-- | mdk-stage1/probing.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mdk-stage1/probing.c b/mdk-stage1/probing.c index 420f863d2..0e4a53e24 100644 --- a/mdk-stage1/probing.c +++ b/mdk-stage1/probing.c @@ -206,10 +206,8 @@ static void probe_that_type(enum driver_type type) } #endif #ifdef ENABLE_USB - if (type == USB_CONTROLLERS) { - stg1_info_message("About to load driver for usb controller `%s'.", pcidb[i].module); - warning_insmod_failed(my_insmod(pcidb[i].module, USB_CONTROLLERS, NULL)); - } + if (type == USB_CONTROLLERS) + my_insmod(pcidb[i].module, USB_CONTROLLERS, NULL); #endif } } |