Index: uspace/drv/platform/mac/mac.c
===================================================================
--- uspace/drv/platform/mac/mac.c	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/drv/platform/mac/mac.c	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -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;
 }
