Index: uspace/drv/audio/hdaudio/hdactl.c
===================================================================
--- uspace/drv/audio/hdaudio/hdactl.c	(revision f959786633df7b137a1e39b67c43a12c1beb80fc)
+++ uspace/drv/audio/hdaudio/hdactl.c	(revision 13db20447e9ad45e946906ed3a8fb2e7b7de7f23)
@@ -224,5 +224,5 @@
 error:
 	if (hda->ctl->corb_virt != NULL) {
-		dmamem_unmap_anonymous(&hda->ctl->corb_virt);
+		dmamem_unmap_anonymous(hda->ctl->corb_virt);
 		hda->ctl->corb_virt = NULL;
 	}
@@ -240,5 +240,5 @@
 
 	if (hda->ctl->corb_virt != NULL)
-		dmamem_unmap_anonymous(&hda->ctl->corb_virt);
+		dmamem_unmap_anonymous(hda->ctl->corb_virt);
 }
 
@@ -319,5 +319,5 @@
 error:
 	if (hda->ctl->rirb_virt != NULL) {
-		dmamem_unmap_anonymous(&hda->ctl->rirb_virt);
+		dmamem_unmap_anonymous(hda->ctl->rirb_virt);
 		hda->ctl->rirb_virt = NULL;
 	}
@@ -336,5 +336,5 @@
 
 	if (hda->ctl->rirb_virt != NULL)
-		dmamem_unmap_anonymous(&hda->ctl->rirb_virt);
+		dmamem_unmap_anonymous(hda->ctl->rirb_virt);
 }
 
