Index: uspace/drv/bus/usb/ohci/hc.c
===================================================================
--- uspace/drv/bus/usb/ohci/hc.c	(revision 38b950fad6bd9e9cf20b8f1a74fb67e9c65b6f71)
+++ uspace/drv/bus/usb/ohci/hc.c	(revision d1ca752d5c656d91dfd911ecbdb19339e2a047b8)
@@ -346,5 +346,5 @@
 void hc_interrupt(hc_t *instance, uint32_t status)
 {
-	status = ohci_reg2host(status);
+	status = OHCI_RD(status);
 	assert(instance);
 	if ((status & ~I_SF) == 0) /* ignore sof status */
Index: uspace/drv/bus/usb/ohci/ohci_regs.h
===================================================================
--- uspace/drv/bus/usb/ohci/ohci_regs.h	(revision 38b950fad6bd9e9cf20b8f1a74fb67e9c65b6f71)
+++ uspace/drv/bus/usb/ohci/ohci_regs.h	(revision d1ca752d5c656d91dfd911ecbdb19339e2a047b8)
@@ -36,9 +36,4 @@
 #include <sys/types.h>
 #include <byteorder.h>
-
-
-/* assume OHCI regs are le */
-#define host2ohci_reg(value) host2uint32_t_le(value)
-#define ohci_reg2host(value) uint32_t_le2host(value)
 
 #define OHCI_WR(reg, val) reg = host2uint32_t_le(val)
