forked from len0rd/rockbox
Fix a little bug I introduced earier than can cause i2s to fail to start with voice running on pp5020.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14961 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a4f0de0f9d
commit
4748dc305e
1 changed files with 2 additions and 6 deletions
|
|
@ -220,9 +220,7 @@ void pcm_play_dma_start(const void *addr, size_t size)
|
|||
set_fiq_handler(fiq);
|
||||
enable_fiq();
|
||||
|
||||
#if CONFIG_CPU == PP5020
|
||||
/* Do nothing */
|
||||
#elif defined(CPU_PP502x)
|
||||
#if defined(CPU_PP502x)
|
||||
/* Enable playback FIFO */
|
||||
IISCONFIG |= (1 << 29);
|
||||
#elif CONFIG_CPU == PP5002
|
||||
|
|
@ -301,9 +299,7 @@ void pcm_play_pause_unpause(void)
|
|||
set_fiq_handler(fiq);
|
||||
enable_fiq();
|
||||
|
||||
#if CONFIG_CPU == PP5020
|
||||
/* Do nothing */
|
||||
#elif defined(CPU_PP502x)
|
||||
#if defined(CPU_PP502x)
|
||||
/* Enable playback FIFO */
|
||||
IISCONFIG |= (1 << 29);
|
||||
#elif CONFIG_CPU == PP5002
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue