forked from len0rd/rockbox
Put pointer arrays in the correct iram section, tiny const police to make it possible too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17677 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cad30d334c
commit
999d3e89a8
1 changed files with 2 additions and 2 deletions
|
@ -216,7 +216,7 @@ ALIGN static const uint16_t swb_offset_128_8[] ICONST_ATTR =
|
|||
0, 4, 8, 12, 16, 20, 24, 28, 36, 44, 52, 60, 72, 88, 108, 128
|
||||
};
|
||||
|
||||
ALIGN static const uint16_t *swb_offset_1024_window[] ICODE_ATTR =
|
||||
ALIGN static const uint16_t *const swb_offset_1024_window[] ICONST_ATTR =
|
||||
{
|
||||
swb_offset_1024_96, /* 96000 */
|
||||
swb_offset_1024_96, /* 88200 */
|
||||
|
@ -266,7 +266,7 @@ ALIGN static const uint16_t *swb_offset_480_window[] =
|
|||
};
|
||||
#endif
|
||||
|
||||
ALIGN static const uint16_t *swb_offset_128_window[] ICODE_ATTR =
|
||||
ALIGN static const uint16_t *const swb_offset_128_window[] ICONST_ATTR =
|
||||
{
|
||||
swb_offset_128_96, /* 96000 */
|
||||
swb_offset_128_96, /* 88200 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue