diff options
author | Nils Wallménius <nils@rockbox.org> | 2011-12-17 13:43:54 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2011-12-17 13:43:54 +0000 |
commit | f0f24a3b4a516ba73ff7570db81abda8ed8bc0e6 (patch) | |
tree | a54e566faeb8b2f36fe0871a9e59aaf32352f87f | |
parent | 1b7455e910d1705d8ec8642621c507cb3262ed7d (diff) |
Fix building of test_codec
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31343 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/test_codec.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 6c3fca242c..6e1b3b6f9e 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -603,8 +603,9 @@ static void init_ci(void) ci.profile_func_exit = rb->profile_func_exit; #endif - ci.cpucache_invalidate = rb->cpucache_invalidate; - ci.cpucache_flush = rb->cpucache_flush; + ci.commit_dcache = rb->commit_dcache; + ci.commit_discard_dcache = rb->commit_discard_dcache; + ci.commit_discard_idcache = rb->commit_discard_idcache; #if NUM_CORES > 1 ci.create_thread = rb->create_thread; |