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:
Michael Sevakis 2009-02-13 12:37:29 +00:00
parent 5d5bab7ed4
commit eb96058266

View file

@ -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 */