mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
iPod Classic: fix small bug on PCM record
On PCM record initialization, an unknown clockgate is enabled instead of the I2S clockgate. This bug does not produce incorrect functionallity because the right clockgate is already enabled on PCM playback initialization. Change-Id: I97a3a4a6f12131e492c1431359a0a976b68014be
This commit is contained in:
parent
1d7f6048f4
commit
954d934ad2
1 changed files with 1 additions and 1 deletions
|
|
@ -407,7 +407,7 @@ void pcm_rec_dma_init(void)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
PWRCON(0) &= ~(1 << 4);
|
PWRCON(0) &= ~(1 << 4);
|
||||||
PWRCON(0) &= ~(1 << 7);
|
PWRCON(1) &= ~(1 << 7);
|
||||||
|
|
||||||
dmac_ch_init(&dma_rec_ch, &dma_rec_ch_cfg);
|
dmac_ch_init(&dma_rec_ch, &dma_rec_ch_cfg);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue