Remove calls to cpu_boost - they are not required any more

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8469 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Ben Basha 2006-01-27 13:37:06 +00:00
parent c338290961
commit b7c29193f9

View file

@ -1186,9 +1186,6 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
{
(void)parameter;
rb = api;
#if !defined(SIMULATOR) && defined(HAVE_ADJUSTABLE_CPU_FREQ)
rb->cpu_boost(true);
#endif
bally=0;
ballx=0;
@ -1205,9 +1202,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
/* Restore user's original backlight setting */
rb->backlight_set_timeout(rb->global_settings->backlight_timeout);
#if !defined(SIMULATOR) && defined(HAVE_ADJUSTABLE_CPU_FREQ)
rb->cpu_boost(false);
#endif
return PLUGIN_OK;
}