[definitions] Fix comment to clarify map_phys size units

system_map_phys takes a size in bytes, not pages.
This commit is contained in:
Justin C. Miller
2023-01-17 18:44:16 -07:00
parent 3af2d41a7f
commit 5a3e0ba541

View File

@@ -28,7 +28,7 @@ object system : object {
method map_phys [cap:map_phys] { method map_phys [cap:map_phys] {
param area ref vma [out] # Receives a handle to the VMA created param area ref vma [out] # Receives a handle to the VMA created
param phys address # The physical address of the area param phys address # The physical address of the area
param size size # Size of the area, in pages param size size # Size of the area, in bytes
param flags uint32 # Flags to apply to the created VMA param flags uint32 # Flags to apply to the created VMA
} }