Index: uspace/drv/intctl/obio/main.c
===================================================================
--- uspace/drv/intctl/obio/main.c	(revision be1b1e6839cb14854c85b8177b374d75b272007e)
+++ uspace/drv/intctl/obio/main.c	(revision e211ea04fccf33d4cb2092f630a29e893e096a02)
@@ -43,9 +43,9 @@
 #define NAME  "obio"
 
-static int obio_dev_add(ddf_dev_t *dev);
-static int obio_dev_remove(ddf_dev_t *dev);
-static int obio_dev_gone(ddf_dev_t *dev);
-static int obio_fun_online(ddf_fun_t *fun);
-static int obio_fun_offline(ddf_fun_t *fun);
+static errno_t obio_dev_add(ddf_dev_t *dev);
+static errno_t obio_dev_remove(ddf_dev_t *dev);
+static errno_t obio_dev_gone(ddf_dev_t *dev);
+static errno_t obio_fun_online(ddf_fun_t *fun);
+static errno_t obio_fun_offline(ddf_fun_t *fun);
 
 static driver_ops_t driver_ops = {
@@ -62,9 +62,9 @@
 };
 
-static int obio_get_res(ddf_dev_t *dev, obio_res_t *res)
+static errno_t obio_get_res(ddf_dev_t *dev, obio_res_t *res)
 {
 	async_sess_t *parent_sess;
 	hw_res_list_parsed_t hw_res;
-	int rc;
+	errno_t rc;
 
 	parent_sess = ddf_dev_parent_sess_get(dev);
@@ -90,9 +90,9 @@
 }
 
-static int obio_dev_add(ddf_dev_t *dev)
+static errno_t obio_dev_add(ddf_dev_t *dev)
 {
 	obio_t *obio;
 	obio_res_t obio_res;
-	int rc;
+	errno_t rc;
 
 	ddf_msg(LVL_DEBUG, "obio_dev_add(%p)", dev);
@@ -114,5 +114,5 @@
 }
 
-static int obio_dev_remove(ddf_dev_t *dev)
+static errno_t obio_dev_remove(ddf_dev_t *dev)
 {
         obio_t *obio = (obio_t *)ddf_dev_data_get(dev);
@@ -123,5 +123,5 @@
 }
 
-static int obio_dev_gone(ddf_dev_t *dev)
+static errno_t obio_dev_gone(ddf_dev_t *dev)
 {
         obio_t *obio = (obio_t *)ddf_dev_data_get(dev);
@@ -132,5 +132,5 @@
 }
 
-static int obio_fun_online(ddf_fun_t *fun)
+static errno_t obio_fun_online(ddf_fun_t *fun)
 {
         ddf_msg(LVL_DEBUG, "obio_fun_online()");
@@ -138,5 +138,5 @@
 }
 
-static int obio_fun_offline(ddf_fun_t *fun)
+static errno_t obio_fun_offline(ddf_fun_t *fun)
 {
         ddf_msg(LVL_DEBUG, "obio_fun_offline()");
