diff options
Diffstat (limited to 'firmware/target/arm/imx31/gigabeat-s/pcm-imx31.c')
-rw-r--r-- | firmware/target/arm/imx31/gigabeat-s/pcm-imx31.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/pcm-imx31.c b/firmware/target/arm/imx31/gigabeat-s/pcm-imx31.c index d0f93eedd5..4710e2d82b 100644 --- a/firmware/target/arm/imx31/gigabeat-s/pcm-imx31.c +++ b/firmware/target/arm/imx31/gigabeat-s/pcm-imx31.c @@ -51,7 +51,7 @@ void pcm_play_lock(void) if (++dma_play_data.locked == 1) { /* Atomically disable transmit interrupt */ - imx31_regmod32(&SSI_SIER1, 0, SSI_SIER_TIE); + imx31_regclr32(&SSI_SIER1, SSI_SIER_TIE); } } @@ -60,7 +60,7 @@ void pcm_play_unlock(void) if (--dma_play_data.locked == 0 && dma_play_data.state != 0) { /* Atomically enable transmit interrupt */ - imx31_regmod32(&SSI_SIER1, SSI_SIER_TIE, SSI_SIER_TIE); + imx31_regset32(&SSI_SIER1, SSI_SIER_TIE); } } |