Index: uspace/srv/fs/fat/fat_ops.c
===================================================================
--- uspace/srv/fs/fat/fat_ops.c	(revision 711e1f32ff29817726bcac1317d5d28bdaabac90)
+++ uspace/srv/fs/fat/fat_ops.c	(revision aa53ee69d55b4eb16d97b68b9c590a0061941863)
@@ -305,5 +305,4 @@
 	int rc;
 
-	printf("fatcnt\n");
 	/* Check number of FATs. */
 	if (bs->fatcnt == 0)
@@ -312,5 +311,4 @@
 	/* Check total number of sectors. */
 
-	printf("totsec\n");
 	if (bs->totsec16 == 0 && bs->totsec32 == 0)
 		return ENOTSUP;
@@ -320,10 +318,8 @@
 		return ENOTSUP;
 
-	printf("mdesc\n");
 	/* Check media descriptor. Must be between 0xf0 and 0xff. */
 	if ((bs->mdesc & 0xf0) != 0xf0)
 		return ENOTSUP;
 
-	printf("sec_per_fat\n");
 	/* Check number of sectors per FAT. */
 	if (bs->sec_per_fat == 0)
@@ -333,5 +329,4 @@
 
 	for (fat_no = 0; fat_no < bs->fatcnt; fat_no++) {
-		printf("clst-read\n");
 		rc = fat_get_cluster(bs, dev_handle, fat_no, 0, &e0);
 		if (rc != EOK)
@@ -342,10 +337,8 @@
 			return EIO;
 
-		printf("mdesc-fat\n");
 		/* Check that first byte of FAT contains the media descriptor. */
 		if ((e0 & 0xff) != bs->mdesc)
 			return ENOTSUP;
 
-		printf("fat-signat\n");
 		/*
 		 * Check that remaining bits of the first two entries are
@@ -1047,5 +1040,5 @@
 	}
 
-	/* Do some simple sanity checks on the boot blocks. */
+	/* Do some simple sanity checks on the file system. */
 	rc = fat_sanity_check(bs, dev_handle);
 	if (rc != EOK) {
