Skip to content

Commit 8d24867

Browse files
authored
Merge pull request #5 from dcpleung/kernel/mm_z_phys_map_unmap_rename
zephyr: rename mm_memmap_phys_bare_* to k_mem_phys_bare_*
2 parents cd560f7 + 95c6d11 commit 8d24867

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/os_specific/service_layers/oszephyr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ AcpiOsMapMemory (
805805
uint8_t *VirtlAdd;
806806

807807
LOG_DBG ("");
808-
mm_memmap_phys_bare_map (&VirtlAdd, Where, Length, K_MEM_PERM_RW);
808+
k_mem_map_phys_bare (&VirtlAdd, Where, Length, K_MEM_PERM_RW);
809809
return ((void *) VirtlAdd);
810810
}
811811
#endif
@@ -831,7 +831,7 @@ AcpiOsUnmapMemory (
831831
ACPI_SIZE Length)
832832
{
833833
LOG_DBG ("");
834-
mm_memmap_phys_bare_unmap (Where, Length);
834+
k_mem_unmap_phys_bare (Where, Length);
835835
}
836836

837837

0 commit comments

Comments
 (0)