diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-05-09 23:11:44 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-05-09 23:11:44 +0000 |
| commit | 564bb3edb0d52ce13367c8f53bc54b4fe448b8cf (patch) | |
| tree | d6d2491cdefac547a53aa031e9ed83dc78118639 /firmware/drivers | |
| parent | b74664f0663fbbcc1de2c4fc93e2282f681f828c (diff) | |
| download | rockbox-564bb3edb0d52ce13367c8f53bc54b4fe448b8cf.zip rockbox-564bb3edb0d52ce13367c8f53bc54b4fe448b8cf.tar.gz rockbox-564bb3edb0d52ce13367c8f53bc54b4fe448b8cf.tar.bz2 rockbox-564bb3edb0d52ce13367c8f53bc54b4fe448b8cf.tar.xz | |
Removed a few annoying debugf calls
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@534 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
| -rw-r--r-- | firmware/drivers/fat.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index f3d6f61..68a1f14 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; |