Index: uspace/srv/devmap/devmap.c
===================================================================
--- uspace/srv/devmap/devmap.c	(revision e5773c67f253269d60114a343a65721cef2ac0f7)
+++ uspace/srv/devmap/devmap.c	(revision b4cbef1df4af24ecf6ce8b7e766827011666ebf1)
@@ -396,5 +396,5 @@
 	 * Get driver name
 	 */
-	int rc = async_data_string_receive(&driver->name, DEVMAP_NAME_MAXLEN);
+	int rc = async_string_receive(&driver->name, DEVMAP_NAME_MAXLEN, NULL);
 	if (rc != EOK) {
 		free(driver);
@@ -510,5 +510,5 @@
 	/* Get fqdn */
 	char *fqdn;
-	int rc = async_data_string_receive(&fqdn, DEVMAP_NAME_MAXLEN);
+	int rc = async_string_receive(&fqdn, DEVMAP_NAME_MAXLEN, NULL);
 	if (rc != EOK) {
 		free(device);
@@ -622,5 +622,5 @@
 	
 	/* Get fqdn */
-	int rc = async_data_string_receive(&fqdn, DEVMAP_NAME_MAXLEN);
+	int rc = async_string_receive(&fqdn, DEVMAP_NAME_MAXLEN, NULL);
 	if (rc != EOK) {
 		ipc_answer_0(iid, rc);
@@ -683,5 +683,5 @@
 	
 	/* Get device name */
-	int rc = async_data_string_receive(&name, DEVMAP_NAME_MAXLEN);
+	int rc = async_string_receive(&name, DEVMAP_NAME_MAXLEN, NULL);
 	if (rc != EOK) {
 		ipc_answer_0(iid, rc);
