Index: uspace/lib/drv/generic/remote_char_dev.c
===================================================================
--- uspace/lib/drv/generic/remote_char_dev.c	(revision 8871dba5729d36839c3aaeb2aa0f78bfac20d2a0)
+++ uspace/lib/drv/generic/remote_char_dev.c	(revision a1d12f4e5e4072fd2e04fe50804ee515788d3dae)
@@ -69,11 +69,11 @@
  *
  * @param dev		The device from which the data are read.
- * @param iface		The local interface structure.
+ * @param ops		The local ops structure.
  */
 static void
-remote_char_read(device_t *dev, void *iface, ipc_callid_t callid,
+remote_char_read(device_t *dev, void *ops, ipc_callid_t callid,
     ipc_call_t *call)
 {
-	char_dev_ops_t *char_iface = (char_dev_ops_t *) iface;
+	char_dev_ops_t *char_dev_ops = (char_dev_ops_t *) ops;
 	ipc_callid_t cid;
 	
@@ -85,5 +85,5 @@
 	}
 	
-	if (!char_iface->read) {
+	if (!char_dev_ops->read) {
 		async_data_read_finalize(cid, NULL, 0);
 		ipc_answer_0(callid, ENOTSUP);
@@ -95,5 +95,5 @@
 	
 	char buf[MAX_CHAR_RW_COUNT];
-	int ret = (*char_iface->read)(dev, buf, len);
+	int ret = (*char_dev_ops->read)(dev, buf, len);
 	
 	if (ret < 0) {
@@ -116,11 +116,11 @@
  *
  * @param dev		The device to which the data are written.
- * @param iface		The local interface structure.
+ * @param ops		The local ops structure.
  */
 static void
-remote_char_write(device_t *dev, void *iface, ipc_callid_t callid,
+remote_char_write(device_t *dev, void *ops, ipc_callid_t callid,
     ipc_call_t *call)
 {
-	char_dev_ops_t *char_iface = (char_dev_ops_t *) iface;
+	char_dev_ops_t *char_dev_ops = (char_dev_ops_t *) ops;
 	ipc_callid_t cid;
 	size_t len;
@@ -132,5 +132,5 @@
 	}
 	
-	if (!char_iface->write) {
+	if (!char_dev_ops->write) {
 		async_data_write_finalize(cid, NULL, 0);
 		ipc_answer_0(callid, ENOTSUP);
@@ -145,5 +145,5 @@
 	async_data_write_finalize(cid, buf, len);
 	
-	int ret = (*char_iface->write)(dev, buf, len);
+	int ret = (*char_dev_ops->write)(dev, buf, len);
 	if (ret < 0) {
 		/* Some error occured. */
