rk27xx: Fix cache broken in r31339. Remove deprecated aliases.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31537 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andrew Ryabinin 2012-01-03 15:01:16 +00:00
parent 30c4efcd16
commit 40786042df
2 changed files with 5 additions and 9 deletions

View file

@ -177,6 +177,7 @@ void commit_discard_idcache(void)
/* wait for invalidate process to complete */
while (CACHEOP & 0x03);
}
void commit_discard_dcache (void) __attribute__((alias("commit_discard_idcache")));
void commit_discard_dcache_range (const void *base, unsigned int size)
{
@ -193,6 +194,3 @@ void commit_discard_dcache_range (const void *base, unsigned int size)
opcode += 32;
}
}
void commit_dcache_range(const void *base, unsigned int size)
__attribute__((alias("commit_discard_dcache_range")));