From c5d57f0aaec039de4a72a94d103ace64c0553b3d Mon Sep 17 00:00:00 2001 From: Miika Pekkarinen Date: Tue, 5 Dec 2006 20:01:48 +0000 Subject: 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 --- apps/talk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/talk.c') diff --git a/apps/talk.c b/apps/talk.c index 107cb72..a880500 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -219,7 +219,7 @@ static void load_voicefile(void) /* Do a bitswap as necessary. */ #if CONFIG_CODEC == SWCODEC logf("Bitswapping voice file."); - cpu_boost_id(true, CPUBOOSTID_TALK); + cpu_boost(true); buf = (unsigned char *)(&p_voicefile->index) + (p_voicefile->id1_max + p_voicefile->id2_max) * sizeof(struct clip_entry); length = file_size - (buf - (unsigned char *) p_voicefile); @@ -231,7 +231,7 @@ static void load_voicefile(void) temp = ((temp >> 2) & 0x33) | ((temp & 0x33) << 2); buf[i] = ((temp >> 1) & 0x55) | ((temp & 0x55) << 1); } - cpu_boost_id(false, CPUBOOSTID_TALK); + cpu_boost(false); #endif -- cgit v1.1