summaryrefslogtreecommitdiff
path: root/firmware/common
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-12-05 20:01:48 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-12-05 20:01:48 +0000
commitc5d57f0aaec039de4a72a94d103ace64c0553b3d (patch)
treeae2f61a6deb7d65d174d175eef02b5be5c8c0cb6 /firmware/common
parent5f15f8f021abc08db88e95371ceda194f5717893 (diff)
Removed the cpu boost tracking debug feature for now because of
different kind of problems. Better implementation can be done later. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11665 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/common')
-rw-r--r--firmware/common/dircache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/common/dircache.c b/firmware/common/dircache.c
index 7227704ffc..18039ee038 100644
--- a/firmware/common/dircache.c
+++ b/firmware/common/dircache.c
@@ -549,16 +549,16 @@ static int dircache_do_rebuild(void)
memset(dircache_cur_path, 0, sizeof(dircache_cur_path));
dircache_size = sizeof(struct dircache_entry);
- cpu_boost_id(true, CPUBOOSTID_DIRCACHE);
+ cpu_boost(true);
if (dircache_travel(pdir, dircache_root) < 0)
{
logf("dircache_travel failed");
- cpu_boost_id(false, CPUBOOSTID_DIRCACHE);
+ cpu_boost(false);
dircache_size = 0;
dircache_initializing = false;
return -2;
}
- cpu_boost_id(false, CPUBOOSTID_DIRCACHE);
+ cpu_boost(false);
logf("Done, %d KiB used", dircache_size / 1024);