diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2011-06-29 09:39:13 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2011-06-29 09:39:13 +0000 |
commit | 5ff641fb8153e0a935317cca4330ca5ea4826c5a (patch) | |
tree | 29c66631e6bfa3b4b837c623556a57ef0227159d /apps/beep.c | |
parent | 40ff07140de0afa86ff3e0c29ee24e0e012f0c42 (diff) |
Do some adjustments to alleviate IRAM congestion on some targets from r30097. Include removing pointless IRAM declarations in pcmbuf.c because that callback code runs at a fairly relaxed pace. M5 is still the biggest problem.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30100 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/beep.c')
-rw-r--r-- | apps/beep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/beep.c b/apps/beep.c index 716847263e..a6244d932c 100644 --- a/apps/beep.c +++ b/apps/beep.c @@ -94,7 +94,7 @@ static FORCE_INLINE void beep_generate(int count) /* Callback to generate the beep frames - also don't want inlining of call below in beep_play */ -static void __attribute__((noinline)) ICODE_ATTR +static void __attribute__((noinline)) beep_get_more(unsigned char **start, size_t *size) { int count = beep_count; |