Index: uspace/srv/bd/sata_bd/sata_bd.c
===================================================================
--- uspace/srv/bd/sata_bd/sata_bd.c	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/srv/bd/sata_bd/sata_bd.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -94,21 +94,21 @@
 	size_t count, i;
 	errno_t rc;
-		
+
 	/* If device is SATA, add device to the disk array. */
 	disk[disk_count].sess = ahci_get_sess(funh, &disk[disk_count].dev_name);
 	if(disk[disk_count].sess != NULL) {
-		
+
 		ahci_get_sata_device_name(disk[disk_count].sess,
 		    SATA_DEV_NAME_LENGTH, disk[disk_count].sata_dev_name);
-		
+
 		ahci_get_block_size(disk[disk_count].sess,
 		    &disk[disk_count].block_size);
-		
+
 		ahci_get_num_blocks(disk[disk_count].sess, &disk[disk_count].blocks);
-		
+
 		bd_srvs_init(&disk[disk_count].bds);
 		disk[disk_count].bds.ops = &sata_bd_ops;
 		disk[disk_count].bds.sarg = &disk[disk_count];
-		
+
 		printf("Device %s - %s , blocks: %lu, block_size: %lu\n",
 		    disk[disk_count].dev_name, disk[disk_count].sata_dev_name,
@@ -118,5 +118,5 @@
 		++disk_count;
 	}
-	
+
 	/* search children */
 	rc = devman_fun_get_child(funh, &devh);
@@ -152,5 +152,5 @@
 	devman_handle_t root_fun;
 	errno_t rc;
-	
+
 	disk_count = 0;
 
@@ -160,7 +160,7 @@
 		return EIO;
 	}
-	
+
 	scan_device_tree(root_fun);
-	
+
 	return EOK;
 }
@@ -248,5 +248,5 @@
 	errno_t rc;
 	category_id_t disk_cat;
-	
+
 	async_set_fallback_port_handler(sata_bd_connection, NULL);
 	rc = loc_server_register(NAME);
@@ -255,5 +255,5 @@
 		return rc;
 	}
-	
+
 	rc = get_sata_disks();
 	if (rc != EOK) {
