From 564bb3edb0d52ce13367c8f53bc54b4fe448b8cf Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Thu, 9 May 2002 23:11:44 +0000 Subject: Removed a few annoying debugf calls git-svn-id: svn://svn.rockbox.org/rockbox/trunk@534 a1c6a512-1295-4272-9138-f99709370657 --- firmware/drivers/fat.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'firmware') diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index f3d6f6145c..68a1f14b02 100644 --- a/firmware/drivers/fat.c +++ b/firmware/drivers/fat.c @@ -431,7 +431,6 @@ static int read_entry(int entry) thisfatentoffset = fatoffset % fat_bpb.bpb_bytspersec; /* Load the sector if it is not cached */ - debugf("Loading FAT sector %d\n", thisfatsecnum); sec = cache_fat_sector(thisfatsecnum); if(!sec) { @@ -451,11 +450,8 @@ static int get_next_cluster(unsigned int cluster) { int next_cluster; - debugf("get_next_cluster(%d)\n", cluster); next_cluster = read_entry(cluster); - debugf("next cluster is %d\n", next_cluster); - /* is this last cluster in chain? */ if ( next_cluster >= 0x0ffffff8 ) return 0; -- cgit v1.2.3