Index: uspace/srv/hid/compositor/compositor.c
===================================================================
--- uspace/srv/hid/compositor/compositor.c	(revision 82cd2e0db29c41894c25a77c91a0b96ff60a0c67)
+++ uspace/srv/hid/compositor/compositor.c	(revision 208db5ac8515f1f9a7936d74f0371c0ba4f5bf48)
@@ -918,5 +918,5 @@
 	/* Allocate resources for new window and register it to the location service. */
 	if (service_id == winreg_id) {
-		async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
+		async_accept_0(icall);
 
 		async_get_call(&call);
@@ -996,5 +996,5 @@
 
 	if (win) {
-		async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
+		async_accept_0(icall);
 	} else {
 		async_answer_0(icall, EINVAL);
Index: uspace/srv/hid/input/input.c
===================================================================
--- uspace/srv/hid/input/input.c	(revision 82cd2e0db29c41894c25a77c91a0b96ff60a0c67)
+++ uspace/srv/hid/input/input.c	(revision 208db5ac8515f1f9a7936d74f0371c0ba4f5bf48)
@@ -328,5 +328,5 @@
 	}
 
-	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
+	async_accept_0(icall);
 
 	while (true) {
Index: uspace/srv/hid/isdv4_tablet/main.c
===================================================================
--- uspace/srv/hid/isdv4_tablet/main.c	(revision 82cd2e0db29c41894c25a77c91a0b96ff60a0c67)
+++ uspace/srv/hid/isdv4_tablet/main.c	(revision 208db5ac8515f1f9a7936d74f0371c0ba4f5bf48)
@@ -65,5 +65,5 @@
 static void mouse_connection(ipc_call_t *icall, void *arg)
 {
-	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
+	async_accept_0(icall);
 
 	async_sess_t *sess =
Index: uspace/srv/hid/output/output.c
===================================================================
--- uspace/srv/hid/output/output.c	(revision 82cd2e0db29c41894c25a77c91a0b96ff60a0c67)
+++ uspace/srv/hid/output/output.c	(revision 208db5ac8515f1f9a7936d74f0371c0ba4f5bf48)
@@ -398,5 +398,5 @@
 {
 	/* Accept the connection */
-	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
+	async_accept_0(icall);
 
 	while (true) {
Index: uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
===================================================================
--- uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c	(revision 82cd2e0db29c41894c25a77c91a0b96ff60a0c67)
+++ uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c	(revision 208db5ac8515f1f9a7936d74f0371c0ba4f5bf48)
@@ -372,5 +372,5 @@
 static void s3c24xx_ts_connection(ipc_call_t *icall, void *arg)
 {
-	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
+	async_accept_0(icall);
 
 	while (true) {
