Index: uspace/drv/bus/usb/xhci/commands.c
===================================================================
--- uspace/drv/bus/usb/xhci/commands.c	(revision 4930b15128becbe72959e0a5620b334f4b2872cb)
+++ uspace/drv/bus/usb/xhci/commands.c	(revision 078e0e636c663f55f7a268f040707cadabe51daa)
@@ -95,5 +95,5 @@
 xhci_cmd_t *xhci_cmd_alloc(void)
 {
-	xhci_cmd_t *cmd = malloc32(sizeof(xhci_cmd_t));
+	xhci_cmd_t *cmd = malloc(sizeof(xhci_cmd_t));
 	xhci_cmd_init(cmd);
 
@@ -120,5 +120,5 @@
 {
 	xhci_cmd_fini(cmd);
-	free32(cmd);
+	free(cmd);
 }
 
Index: uspace/drv/bus/usb/xhci/hc.c
===================================================================
--- uspace/drv/bus/usb/xhci/hc.c	(revision 4930b15128becbe72959e0a5620b334f4b2872cb)
+++ uspace/drv/bus/usb/xhci/hc.c	(revision 078e0e636c663f55f7a268f040707cadabe51daa)
@@ -193,5 +193,5 @@
 		return ENOMEM;
 
-	hc->dcbaa_virt = malloc32((1 + hc->max_slots) * sizeof(xhci_virt_device_ctx_t));
+	hc->dcbaa_virt = malloc((1 + hc->max_slots) * sizeof(xhci_virt_device_ctx_t));
 	if (!hc->dcbaa_virt) {
 		err = ENOMEM;
Index: uspace/drv/bus/usb/xhci/rh.c
===================================================================
--- uspace/drv/bus/usb/xhci/rh.c	(revision 4930b15128becbe72959e0a5620b334f4b2872cb)
+++ uspace/drv/bus/usb/xhci/rh.c	(revision 078e0e636c663f55f7a268f040707cadabe51daa)
@@ -103,5 +103,5 @@
 // 	xhci_cmd_fini(&cmd);
 //
-// 	xhci_input_ctx_t *ictx = malloc32(sizeof(xhci_input_ctx_t));
+// 	xhci_input_ctx_t *ictx = malloc(sizeof(xhci_input_ctx_t));
 // 	if (!ictx) {
 // 		return ENOMEM;
@@ -119,5 +119,5 @@
 // 	XHCI_SLOT_ROUTE_STRING_SET(ictx->slot_ctx, route_str);
 //
-// 	xhci_trb_ring_t *ep_ring = malloc32(sizeof(xhci_trb_ring_t));
+// 	xhci_trb_ring_t *ep_ring = malloc(sizeof(xhci_trb_ring_t));
 // 	if (!ep_ring) {
 // 		err = ENOMEM;
@@ -144,5 +144,5 @@
 //
 // 	// TODO: What's the alignment?
-// 	xhci_device_ctx_t *dctx = malloc32(sizeof(xhci_device_ctx_t));
+// 	xhci_device_ctx_t *dctx = malloc(sizeof(xhci_device_ctx_t));
 // 	if (!dctx) {
 // 		err = ENOMEM;
@@ -171,5 +171,5 @@
 // err_dctx:
 // 	if (dctx) {
-// 		free32(dctx);
+// 		free(dctx);
 // 		hc->dcbaa[slot_id] = 0;
 // 		memset(&hc->dcbaa_virt[slot_id], 0, sizeof(xhci_virt_device_ctx_t));
@@ -178,8 +178,8 @@
 // 	if (ep_ring) {
 // 		xhci_trb_ring_fini(ep_ring);
-// 		free32(ep_ring);
+// 		free(ep_ring);
 // 	}
 // err_ictx:
-// 	free32(ictx);
+// 	free(ictx);
 // 	return err;
 // }
