Index: uspace/drv/uhci-hcd/iface.c
===================================================================
--- uspace/drv/uhci-hcd/iface.c	(revision 6495e71f384915dd3fc39443ce0ed8df687e65ca)
+++ uspace/drv/uhci-hcd/iface.c	(revision b4875e6750644cba99e15d45a80dd657280635cf)
@@ -41,4 +41,6 @@
 #include "iface.h"
 #include "uhci.h"
+
+#define DEFAULT_SPEED FULL_SPEED
 
 /*----------------------------------------------------------------------------*/
@@ -97,5 +99,5 @@
     usbhc_iface_transfer_out_callback_t callback, void *arg)
 {
-	dev_speed_t speed = FULL_SPEED;
+	dev_speed_t speed = DEFAULT_SPEED;
 
 	batch_t *batch = batch_get(fun, target, USB_TRANSFER_INTERRUPT,
@@ -112,5 +114,5 @@
     usbhc_iface_transfer_in_callback_t callback, void *arg)
 {
-	dev_speed_t speed = FULL_SPEED;
+	dev_speed_t speed = DEFAULT_SPEED;
 
 	batch_t *batch = batch_get(fun, target, USB_TRANSFER_INTERRUPT,
@@ -127,5 +129,5 @@
     usbhc_iface_transfer_out_callback_t callback, void *arg)
 {
-	dev_speed_t speed = FULL_SPEED;
+	dev_speed_t speed = DEFAULT_SPEED;
 
 	batch_t *batch = batch_get(fun, target, USB_TRANSFER_CONTROL,
@@ -143,5 +145,5 @@
     usbhc_iface_transfer_in_callback_t callback, void *arg)
 {
-	dev_speed_t speed = FULL_SPEED;
+	dev_speed_t speed = DEFAULT_SPEED;
 
 	batch_t *batch = batch_get(fun, target, USB_TRANSFER_CONTROL,
