Index: uspace/drv/infrastructure/rootpc/rootpc.c
===================================================================
--- uspace/drv/infrastructure/rootpc/rootpc.c	(revision 852052df33dad462a5b4517d1cb06ed4c12b469d)
+++ uspace/drv/infrastructure/rootpc/rootpc.c	(revision b0f00a9ed1b00bda8a286a4c4bbe625a7f410bc6)
@@ -63,10 +63,10 @@
 } rootpc_fun_t;
 
-static int rootpc_dev_add(ddf_dev_t *dev);
+static int rootpc_add_device(ddf_dev_t *dev);
 static void root_pc_init(void);
 
 /** The root device driver's standard operations. */
 static driver_ops_t rootpc_ops = {
-	.dev_add = &rootpc_dev_add
+	.add_device = &rootpc_add_device
 };
 
@@ -109,6 +109,6 @@
 
 static hw_res_ops_t fun_hw_res_ops = {
-	.get_resource_list = &rootpc_get_resources,
-	.enable_interrupt = &rootpc_enable_interrupt,
+	&rootpc_get_resources,
+	&rootpc_enable_interrupt
 };
 
@@ -175,7 +175,7 @@
  * @return		Zero on success, negative error number otherwise.
  */
-static int rootpc_dev_add(ddf_dev_t *dev)
-{
-	ddf_msg(LVL_DEBUG, "rootpc_dev_add, device handle = %d",
+static int rootpc_add_device(ddf_dev_t *dev)
+{
+	ddf_msg(LVL_DEBUG, "rootpc_add_device, device handle = %d",
 	    (int)dev->handle);
 	
