Final commit to get test_codec working properly for both freq-scaling and non-freq-scaling targets.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30375 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
656625b30e
commit
152c4fb819
1 changed files with 7 additions and 7 deletions
|
@ -831,10 +831,7 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
|
||||
enum
|
||||
{
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
BOOST = 0,
|
||||
#endif
|
||||
SPEED_TEST = 1,
|
||||
SPEED_TEST = 0,
|
||||
SPEED_TEST_DIR,
|
||||
WRITE_WAV,
|
||||
SPEED_TEST_WITH_DSP,
|
||||
|
@ -843,13 +840,13 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
CHECKSUM,
|
||||
CHECKSUM_DIR,
|
||||
QUIT,
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
BOOST,
|
||||
#endif
|
||||
};
|
||||
|
||||
MENUITEM_STRINGLIST(
|
||||
menu, "test_codec", NULL,
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
"Boosting",
|
||||
#endif
|
||||
"Speed test",
|
||||
"Speed test folder",
|
||||
"Write WAV",
|
||||
|
@ -859,6 +856,9 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
"Checksum",
|
||||
"Checksum folder",
|
||||
"Quit",
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
"Boosting",
|
||||
#endif
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue