Index: uspace/srv/fs/fat/fat_fat.c
===================================================================
--- uspace/srv/fs/fat/fat_fat.c	(revision f1ba5d62689ce8c511830ed97b4cd78ee2ea8b24)
+++ uspace/srv/fs/fat/fat_fat.c	(revision d5a720cf96e47051355ba58de483308a3878db33)
@@ -96,5 +96,5 @@
 		/* root directory special case */
 		assert(offset < rds);
-		b = block_get(dev_handle, rscnt + fatcnt * sf + offset, bps);
+		b = block_get(dev_handle, rscnt + fatcnt * sf + offset);
 		return b;
 	}
@@ -109,5 +109,5 @@
 		fidx = clst % (bps / sizeof(fat_cluster_t));
 		/* read FAT1 */
-		b = block_get(dev_handle, rscnt + fsec, bps);
+		b = block_get(dev_handle, rscnt + fsec);
 		clst = uint16_t_le2host(((fat_cluster_t *)b->data)[fidx]);
 		assert(clst != FAT_CLST_BAD);
@@ -117,5 +117,5 @@
 
 	b = block_get(dev_handle, ssa + (clst - FAT_CLST_FIRST) * spc +
-	    offset % spc, bps);
+	    offset % spc);
 
 	return b;
@@ -164,5 +164,5 @@
 		fidx = clst % (bps / sizeof(fat_cluster_t));
 		/* read FAT1 */
-		b = block_get(dev_handle, rscnt + fsec, bps);
+		b = block_get(dev_handle, rscnt + fsec);
 		clst = uint16_t_le2host(((fat_cluster_t *)b->data)[fidx]);
 		assert(clst != FAT_CLST_BAD);
@@ -244,5 +244,5 @@
 	assert(fatno < bs->fatcnt);
 	b = block_get(dev_handle, rscnt + sf * fatno +
-	    (clst * sizeof(fat_cluster_t)) / bps, bps);
+	    (clst * sizeof(fat_cluster_t)) / bps);
 	cp = (fat_cluster_t *)b->data + clst % (bps / sizeof(fat_cluster_t));
 	*cp = host2uint16_t_le(value);
@@ -314,5 +314,5 @@
 	futex_down(&fat_alloc_lock);
 	for (b = 0, cl = 0; b < sf; blk++) {
-		blk = block_get(dev_handle, rscnt + b, bps);
+		blk = block_get(dev_handle, rscnt + b);
 		for (c = 0; c < bps / sizeof(fat_cluster_t); c++, cl++) {
 			fat_cluster_t *clst = (fat_cluster_t *)blk->data + c;
