Index: uspace/drv/bus/usb/uhci/batch.c
===================================================================
--- uspace/drv/bus/usb/uhci/batch.c	(revision b02308e24a4eb526d32288a583894e2468b57aee)
+++ uspace/drv/bus/usb/uhci/batch.c	(revision 27873be11b67d6fc3a8680b49efedc697ae908fd)
@@ -119,5 +119,5 @@
  * Initializes parameters needed for the transfer and callback.
  */
-int batch_init_private(usb_transfer_batch_t *batch)
+int batch_init_uhci(usb_transfer_batch_t *batch)
 {
 #define CHECK_NULL_DISPOSE_RETURN(ptr, message...) \
Index: uspace/drv/bus/usb/uhci/batch.h
===================================================================
--- uspace/drv/bus/usb/uhci/batch.h	(revision b02308e24a4eb526d32288a583894e2468b57aee)
+++ uspace/drv/bus/usb/uhci/batch.h	(revision 27873be11b67d6fc3a8680b49efedc697ae908fd)
@@ -39,5 +39,5 @@
 #include "hw_struct/queue_head.h"
 
-int batch_init_private(usb_transfer_batch_t *batch);
+int batch_init_uhci(usb_transfer_batch_t *batch);
 bool batch_is_complete(usb_transfer_batch_t *batch);
 qh_t * batch_qh(usb_transfer_batch_t *batch);
Index: uspace/drv/bus/usb/uhci/hc.c
===================================================================
--- uspace/drv/bus/usb/uhci/hc.c	(revision b02308e24a4eb526d32288a583894e2468b57aee)
+++ uspace/drv/bus/usb/uhci/hc.c	(revision 27873be11b67d6fc3a8680b49efedc697ae908fd)
@@ -198,5 +198,5 @@
 	instance->generic.private_data = instance;
 	instance->generic.schedule = hc_schedule;
-	instance->generic.batch_init_hook = batch_init_private;
+	instance->generic.batch_init_hook = batch_init_uhci;
 	instance->generic.ep_add_hook = NULL;
 #undef CHECK_RET_DEST_FUN_RETURN
