fix multi core error of rk3568

This commit is contained in:
lr
2024-07-19 23:15:10 +08:00
parent a8aea9338f
commit ae7992d429
13 changed files with 54 additions and 119 deletions
@@ -49,7 +49,7 @@ bool module_phymem_init()
return true;
}
char* kalloc(size_t size)
char* kalloc(uintptr_t size)
{
char* mem_alloc = KBuddyAlloc(&kern_virtmem_buddy, size);
if (mem_alloc == NULL) {