summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-11-14 19:49:20 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-11-14 19:49:20 +0000
commitba64cf697edfcfb826d54dd86ab40c13c75e0796 (patch)
tree8337783afb45813f0d02996938e4faf7dddb891e /firmware
parent4523db133397daedb1b12ec4462e471e52fe314f (diff)
downloadrockbox-ba64cf697edfcfb826d54dd86ab40c13c75e0796.tar.gz
rockbox-ba64cf697edfcfb826d54dd86ab40c13c75e0796.zip
Move pcm doublebuffer to IRAM on nano 2G.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28600 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/s5l8700/pcm-s5l8700.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/s5l8700/pcm-s5l8700.c b/firmware/target/arm/s5l8700/pcm-s5l8700.c
index eb63bbacbd..08086c37d8 100644
--- a/firmware/target/arm/s5l8700/pcm-s5l8700.c
+++ b/firmware/target/arm/s5l8700/pcm-s5l8700.c
@@ -41,7 +41,7 @@
41 41
42static volatile int locked = 0; 42static volatile int locked = 0;
43static const int zerosample = 0; 43static const int zerosample = 0;
44static unsigned char dblbuf[1024]; 44static unsigned char dblbuf[1024] IBSS_ATTR;
45static const unsigned char* queuedbuf; 45static const unsigned char* queuedbuf;
46static size_t queuedsize; 46static size_t queuedsize;
47static const unsigned char* nextbuf; 47static const unsigned char* nextbuf;