Index: uspace/drv/platform/amdm37x/main.c
===================================================================
--- uspace/drv/platform/amdm37x/main.c	(revision 33b8d024bc268f2773c26e74a40dada11bb71e58)
+++ uspace/drv/platform/amdm37x/main.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -176,5 +176,5 @@
 	if (fnode == NULL)
 		return ENOMEM;
-	
+
 	/* Add match id */
 	errno_t ret = ddf_fun_add_match_id(fnode, fun->id, fun->score);
@@ -183,5 +183,5 @@
 		return ret;
 	}
-	
+
 	/* Alloc needed data */
 	amdm37x_fun_t *rf =
@@ -195,5 +195,5 @@
 	/* Set provided operations to the device. */
 	ddf_fun_set_ops(fnode, &amdm37x_fun_ops);
-	
+
 	/* Register function. */
 	ret = ddf_fun_bind(fnode);
@@ -203,5 +203,5 @@
 		return ret;
 	}
-	
+
 	return EOK;
 }
Index: uspace/drv/platform/mac/mac.c
===================================================================
--- uspace/drv/platform/mac/mac.c	(revision 33b8d024bc268f2773c26e74a40dada11bb71e58)
+++ uspace/drv/platform/mac/mac.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -130,24 +130,24 @@
 	ddf_msg(LVL_DEBUG, "Adding new function '%s'.", name);
 	printf("mac: Adding new function '%s'.\n", name);
-	
+
 	ddf_fun_t *fnode = NULL;
 	errno_t rc;
-	
+
 	/* Create new device. */
 	fnode = ddf_fun_create(dev, fun_inner, name);
 	if (fnode == NULL)
 		goto failure;
-	
+
 	mac_fun_t *fun = ddf_fun_data_alloc(fnode, sizeof(mac_fun_t));
 	*fun = *fun_proto;
-	
+
 	/* Add match ID */
 	rc = ddf_fun_add_match_id(fnode, str_match_id, 100);
 	if (rc != EOK)
 		goto failure;
-	
+
 	/* Set provided operations to the device. */
 	ddf_fun_set_ops(fnode, &mac_fun_ops);
-	
+
 	/* Register function. */
 	if (ddf_fun_bind(fnode) != EOK) {
@@ -155,14 +155,14 @@
 		goto failure;
 	}
-	
+
 	printf("mac: Added new function '%s' (str=%s).\n", name, str_match_id);
 	return true;
-	
+
 failure:
 	if (fnode != NULL)
 		ddf_fun_destroy(fnode);
-	
+
 	ddf_msg(LVL_ERROR, "Failed adding function '%s'.", name);
-	
+
 	return false;
 }
@@ -223,5 +223,5 @@
 	mac_fun_t *fun = mac_fun(fnode);
 	assert(fun != NULL);
-	
+
 	return &fun->hw_resources;
 }
@@ -230,5 +230,5 @@
 {
 	/* TODO */
-	
+
 	return false;
 }
Index: uspace/drv/platform/malta/malta.c
===================================================================
--- uspace/drv/platform/malta/malta.c	(revision 33b8d024bc268f2773c26e74a40dada11bb71e58)
+++ uspace/drv/platform/malta/malta.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -138,5 +138,5 @@
 {
 	malta_fun_t *fun = malta_fun(fnode);
-	
+
 	assert(fun != NULL);
 	return &fun->hw_resources;
@@ -146,5 +146,5 @@
 {
 	/* TODO */
-	
+
 	return false;
 }
@@ -175,24 +175,24 @@
 {
 	ddf_msg(LVL_DEBUG, "Adding new function '%s'.", name);
-	
+
 	ddf_fun_t *fnode = NULL;
 	errno_t rc;
-	
+
 	/* Create new device. */
 	fnode = ddf_fun_create(dev, fun_inner, name);
 	if (fnode == NULL)
 		goto failure;
-	
+
 	malta_fun_t *fun = ddf_fun_data_alloc(fnode, sizeof(malta_fun_t));
 	*fun = *fun_proto;
-	
+
 	/* Add match ID */
 	rc = ddf_fun_add_match_id(fnode, str_match_id, 100);
 	if (rc != EOK)
 		goto failure;
-	
+
 	/* Set provided operations to the device. */
 	ddf_fun_set_ops(fnode, &malta_fun_ops);
-	
+
 	/* Register function. */
 	if (ddf_fun_bind(fnode) != EOK) {
@@ -200,13 +200,13 @@
 		goto failure;
 	}
-	
+
 	return true;
-	
+
 failure:
 	if (fnode != NULL)
 		ddf_fun_destroy(fnode);
-	
+
 	ddf_msg(LVL_ERROR, "Failed adding function '%s'.", name);
-	
+
 	return false;
 }
@@ -246,10 +246,10 @@
 	    &gt[GT_PCI_CMD / sizeof(ioport32_t)], host2uint32_t_le(val));
 
-	
+
 	/* Register functions. */
 	if (!malta_add_functions(dev)) {
 		ddf_msg(LVL_ERROR, "Failed to add functions for the Malta platform.");
 	}
-	
+
 	return EOK;
 }
Index: uspace/drv/platform/msim/msim.c
===================================================================
--- uspace/drv/platform/msim/msim.c	(revision 33b8d024bc268f2773c26e74a40dada11bb71e58)
+++ uspace/drv/platform/msim/msim.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -147,5 +147,5 @@
 {
 	msim_fun_t *fun = msim_fun(fnode);
-	
+
 	assert(fun != NULL);
 	return &fun->hw_resources;
@@ -184,27 +184,27 @@
 {
 	ddf_msg(LVL_DEBUG, "Adding new function '%s'.", name);
-	
+
 	ddf_fun_t *fnode = NULL;
 	errno_t rc;
-	
+
 	/* Create new device. */
 	fnode = ddf_fun_create(dev, fun_inner, name);
 	if (fnode == NULL)
 		goto failure;
-	
+
 	msim_fun_t *fun = ddf_fun_data_alloc(fnode, sizeof(msim_fun_t));
 	if (fun == NULL)
 		goto failure;
-	
+
 	*fun = *fun_proto;
-	
+
 	/* Add match ID */
 	rc = ddf_fun_add_match_id(fnode, str_match_id, 100);
 	if (rc != EOK)
 		goto failure;
-	
+
 	/* Set provided operations to the device. */
 	ddf_fun_set_ops(fnode, &msim_fun_ops);
-	
+
 	/* Register function. */
 	if (ddf_fun_bind(fnode) != EOK) {
@@ -212,13 +212,13 @@
 		goto failure;
 	}
-	
+
 	return true;
-	
+
 failure:
 	if (fnode != NULL)
 		ddf_fun_destroy(fnode);
-	
+
 	ddf_msg(LVL_ERROR, "Failed adding function '%s'.", name);
-	
+
 	return false;
 }
@@ -246,5 +246,5 @@
 	if (!msim_add_functions(dev))
 		ddf_msg(LVL_ERROR, "Failed to add functions for the MSIM platform.");
-	
+
 	return EOK;
 }
Index: uspace/drv/platform/pc/pc.c
===================================================================
--- uspace/drv/platform/pc/pc.c	(revision 33b8d024bc268f2773c26e74a40dada11bb71e58)
+++ uspace/drv/platform/pc/pc.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -120,5 +120,5 @@
 {
 	pc_fun_t *fun = pc_fun(fnode);
-	
+
 	assert(fun != NULL);
 	return &fun->hw_resources;
@@ -128,5 +128,5 @@
 {
 	/* TODO */
-	
+
 	return false;
 }
@@ -135,5 +135,5 @@
 {
 	pc_fun_t *fun = pc_fun(fnode);
-	
+
 	assert(fun != NULL);
 	return &fun->pio_window;
@@ -157,24 +157,24 @@
 {
 	ddf_msg(LVL_DEBUG, "Adding new function '%s'.", name);
-	
+
 	ddf_fun_t *fnode = NULL;
 	errno_t rc;
-	
+
 	/* Create new device. */
 	fnode = ddf_fun_create(dev, fun_inner, name);
 	if (fnode == NULL)
 		goto failure;
-	
+
 	pc_fun_t *fun = ddf_fun_data_alloc(fnode, sizeof(pc_fun_t));
 	*fun = *fun_proto;
-	
+
 	/* Add match ID */
 	rc = ddf_fun_add_match_id(fnode, str_match_id, 100);
 	if (rc != EOK)
 		goto failure;
-	
+
 	/* Set provided operations to the device. */
 	ddf_fun_set_ops(fnode, &pc_fun_ops);
-	
+
 	/* Register function. */
 	if (ddf_fun_bind(fnode) != EOK) {
@@ -182,13 +182,13 @@
 		goto failure;
 	}
-	
+
 	return true;
-	
+
 failure:
 	if (fnode != NULL)
 		ddf_fun_destroy(fnode);
-	
+
 	ddf_msg(LVL_ERROR, "Failed adding function '%s'.", name);
-	
+
 	return false;
 }
@@ -209,10 +209,10 @@
 	ddf_msg(LVL_DEBUG, "pc_dev_add, device handle = %d",
 	    (int)ddf_dev_get_handle(dev));
-	
+
 	/* Register functions. */
 	if (!pc_add_functions(dev)) {
 		ddf_msg(LVL_ERROR, "Failed to add functions for PC platform.");
 	}
-	
+
 	return EOK;
 }
Index: uspace/drv/platform/sun4u/sun4u.c
===================================================================
--- uspace/drv/platform/sun4u/sun4u.c	(revision 33b8d024bc268f2773c26e74a40dada11bb71e58)
+++ uspace/drv/platform/sun4u/sun4u.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -154,5 +154,5 @@
 {
 	sun4u_fun_t *fun = sun4u_fun(fnode);
-	
+
 	assert(fun != NULL);
 	return &fun->hw_resources;
@@ -162,5 +162,5 @@
 {
 	/* TODO */
-	
+
 	return false;
 }
@@ -191,24 +191,24 @@
 {
 	ddf_msg(LVL_DEBUG, "Adding new function '%s'.", name);
-	
+
 	ddf_fun_t *fnode = NULL;
 	errno_t rc;
-	
+
 	/* Create new device. */
 	fnode = ddf_fun_create(dev, fun_inner, name);
 	if (fnode == NULL)
 		goto failure;
-	
+
 	sun4u_fun_t *fun = ddf_fun_data_alloc(fnode, sizeof(sun4u_fun_t));
 	*fun = *fun_proto;
-	
+
 	/* Add match ID */
 	rc = ddf_fun_add_match_id(fnode, str_match_id, 100);
 	if (rc != EOK)
 		goto failure;
-	
+
 	/* Set provided operations to the device. */
 	ddf_fun_set_ops(fnode, &sun4u_fun_ops);
-	
+
 	/* Register function. */
 	if (ddf_fun_bind(fnode) != EOK) {
@@ -216,13 +216,13 @@
 		goto failure;
 	}
-	
+
 	return true;
-	
+
 failure:
 	if (fnode != NULL)
 		ddf_fun_destroy(fnode);
-	
+
 	ddf_msg(LVL_ERROR, "Failed adding function '%s'.", name);
-	
+
 	return false;
 }
@@ -251,5 +251,5 @@
 		ddf_msg(LVL_ERROR, "Failed to add functions for the Malta platform.");
 	}
-	
+
 	return EOK;
 }
