Index: uspace/drv/uhci/debug.h
===================================================================
--- uspace/drv/uhci/debug.h	(revision c8ca07eec7591d786696675152ae2dfe7bde8f01)
+++ uspace/drv/uhci/debug.h	(revision 621fdaa75ad6f9b36a3978a6df9994b9ed71ffe4)
@@ -35,4 +35,5 @@
 #define DRV_UHCI_DEBUG_H
 
+#include <stdio.h>
 #include <usb/debug.h>
 
@@ -49,8 +50,14 @@
 
 #define uhci_printf( level, fmt, args...) \
-	usb_dprintf( NAME, level, fmt, ##args )
+	usb_dprintf(NAME, level, fmt, ##args)
+
+#define uhci_print_fatal( fmt, args... ) \
+	fprintf(stderr, "[" NAME ":FATAL ERROR]: " fmt, ##args)
 
 #define uhci_print_error( fmt, args... ) \
-	usb_dprintf( NAME, DEBUG_LEVEL_ERROR, fmt, ##args )
+	fprintf(stderr, "[" NAME ":ERROR]: " fmt, ##args)
+
+#define uhci_print_warning( fmt, args... ) \
+	usb_dprintf( NAME, DEBUG_LEVEL_WARNING, fmt, ##args )
 
 #define uhci_print_info( fmt, args... ) \
