Index: uspace/lib/c/generic/io/console.c
===================================================================
--- uspace/lib/c/generic/io/console.c	(revision b366a6f4b86cb7fe82fcf415965c5a7de1a59638)
+++ uspace/lib/c/generic/io/console.c	(revision 26e7d6da331e8d35b5e83880a9740de5e9e4bd99)
@@ -87,5 +87,5 @@
 {
 	async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
-	async_msg_0(exch, CONSOLE_CLEAR);
+	async_req_0_0(exch, CONSOLE_CLEAR);
 	async_exchange_end(exch);
 }
@@ -103,21 +103,21 @@
 {
 	async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
-	async_msg_1(exch, CONSOLE_SET_STYLE, style);
-	async_exchange_end(exch);
-}
-
-void console_set_color(console_ctrl_t *ctrl, uint8_t fg_color, uint8_t bg_color,
+	async_req_1_0(exch, CONSOLE_SET_STYLE, style);
+	async_exchange_end(exch);
+}
+
+void console_set_color(console_ctrl_t *ctrl, uint8_t bgcolor, uint8_t fgcolor,
     uint8_t flags)
 {
 	async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
-	async_msg_3(exch, CONSOLE_SET_COLOR, fg_color, bg_color, flags);
-	async_exchange_end(exch);
-}
-
-void console_set_rgb_color(console_ctrl_t *ctrl, uint32_t fg_color,
-    uint32_t bg_color)
-{
-	async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
-	async_msg_2(exch, CONSOLE_SET_RGB_COLOR, fg_color, bg_color);
+	async_req_3_0(exch, CONSOLE_SET_COLOR, bgcolor, fgcolor, flags);
+	async_exchange_end(exch);
+}
+
+void console_set_rgb_color(console_ctrl_t *ctrl, uint32_t bgcolor,
+    uint32_t fgcolor)
+{
+	async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
+	async_req_2_0(exch, CONSOLE_SET_RGB_COLOR, bgcolor, fgcolor);
 	async_exchange_end(exch);
 }
@@ -126,5 +126,5 @@
 {
 	async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
-	async_msg_1(exch, CONSOLE_CURSOR_VISIBILITY, (show != false));
+	async_req_1_0(exch, CONSOLE_CURSOR_VISIBILITY, (show != false));
 	async_exchange_end(exch);
 }
@@ -151,5 +151,5 @@
 {
 	async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
-	async_msg_2(exch, CONSOLE_GOTO, col, row);
+	async_req_2_0(exch, CONSOLE_GOTO, col, row);
 	async_exchange_end(exch);
 }
