forked from len0rd/rockbox
PLL was incorrectly initialized causing system to crash when ran from
ROM. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11669 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
51189b4cb4
commit
46a608bf07
3 changed files with 6 additions and 6 deletions
|
|
@ -314,6 +314,6 @@ int system_memory_guard(int newmode)
|
|||
/* allow setting of audio clock related bits */
|
||||
void coldfire_set_pllcr_audio_bits(long bits)
|
||||
{
|
||||
PLLCR = (PLLCR & ~0x70c00000) | (bits & 0x70c00000);
|
||||
PLLCR = (PLLCR & ~0x70400000) | (bits & 0x70400000);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue