Correct prototype: void __clear_cache(void *, void *).

This commit is contained in:
Edmund Grimley Evans
2015-10-15 19:02:54 +01:00
parent a16f862cf6
commit eafd7a7d3b
3 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@
#include <stdint.h>
#include <string.h>
void __clear_cache(char *beg, char *end)
void __clear_cache(void *beg, void *end)
{
__arm64_clear_cache(beg, end);
}