From 24a202404bfd163a81c0823f010fc844578bb1b2 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Wed, 11 Sep 2002 14:58:07 +0000 Subject: probe for usb stuff in info and error msg also --- mdk-stage1/frontend-common.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mdk-stage1/frontend-common.c') diff --git a/mdk-stage1/frontend-common.c b/mdk-stage1/frontend-common.c index caddeb7d4..8df44f27d 100644 --- a/mdk-stage1/frontend-common.c +++ b/mdk-stage1/frontend-common.c @@ -21,6 +21,7 @@ void info_message(char *msg, ...) { va_list args; + probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so... va_start(args, msg); vinfo_message(msg, args); va_end(args); @@ -37,6 +38,7 @@ void wait_message(char *msg, ...) void error_message(char *msg, ...) { va_list args; + probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so... va_start(args, msg); verror_message(msg, args); va_end(args); -- cgit v1.2.1