diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-03-18 11:38:15 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-03-18 11:38:15 +0000 |
| commit | e7b993f1f632f4d4af46ca4c1d3b9159f109ce2b (patch) | |
| tree | 7e6ee8e74bc8a255da366e17ad9468d070c7103b | |
| parent | a79cb485b653ecea692f0085f0d3668ee7101662 (diff) | |
| download | rockbox-e7b993f1f632f4d4af46ca4c1d3b9159f109ce2b.zip rockbox-e7b993f1f632f4d4af46ca4c1d3b9159f109ce2b.tar.gz rockbox-e7b993f1f632f4d4af46ca4c1d3b9159f109ce2b.tar.bz2 rockbox-e7b993f1f632f4d4af46ca4c1d3b9159f109ce2b.tar.xz | |
main() now sets the default CPU frequency
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6208 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 8154c44..c5e5492 100644 --- a/apps/main.c +++ b/apps/main.c @@ -124,6 +124,10 @@ void init(void) system_init(); kernel_init(); +#ifdef HAVE_ADJUSTABLE_CPU_FREQ + set_cpu_frequency(CPUFREQ_NORMAL); +#endif + buffer_init(); settings_reset(); |