mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
pcm-as3525.c : don't use |= on a write-only register (VIC_INT_EN_CLEAR).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19345 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e97191faa7
commit
894dbfac18
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ static int locked = 0;
|
|||
void pcm_play_lock(void)
|
||||
{
|
||||
if(++locked == 1)
|
||||
VIC_INT_EN_CLEAR |= INTERRUPT_DMAC;
|
||||
VIC_INT_EN_CLEAR = INTERRUPT_DMAC;
|
||||
}
|
||||
|
||||
/* Unmask the DMA interrupt if enabled */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue