summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mdk-stage1/probing.c6
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
}
}