Remove experimental check which should only be there if all PCM drivers do it. It's incomplete anyway.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19999 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5d5bab7ed4
commit
eb96058266
1 changed files with 0 additions and 6 deletions
|
@ -466,12 +466,6 @@ void pcm_record_more(void *start, size_t size)
|
||||||
start = (void *)(((long)start + 3) & ~3);
|
start = (void *)(((long)start + 3) & ~3);
|
||||||
size &= ~3;
|
size &= ~3;
|
||||||
|
|
||||||
if (size <= 0)
|
|
||||||
{
|
|
||||||
pcm_rec_dma_stop();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
pcm_rec_peak_addr = (unsigned long *)start; /* Start peaking at dest */
|
pcm_rec_peak_addr = (unsigned long *)start; /* Start peaking at dest */
|
||||||
DAR1 = (unsigned long)start; /* Destination address */
|
DAR1 = (unsigned long)start; /* Destination address */
|
||||||
BCR1 = (unsigned long)size; /* Bytes to transfer */
|
BCR1 = (unsigned long)size; /* Bytes to transfer */
|
||||||
|
|
Loading…
Reference in a new issue