summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2013-07-03 21:17:30 +0200
committerRichard Braun <rbraun@sceen.net>2013-07-03 21:17:30 +0200
commitd7b1110aaeac2eb0af3ffcbcca9a9a366b1617a8 (patch)
treedb4f40c2aa420acb84ded4c5d193111dc58d7879
parent92bc488b0ff8aeb4a2239c0f8dc291252aad5215 (diff)
vm/vm_kmem: fix mention to multiple kernel maps
There is currently one kernel map only.
-rw-r--r--vm/vm_kmem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/vm_kmem.h b/vm/vm_kmem.h
index f2296ec3..39298a44 100644
--- a/vm/vm_kmem.h
+++ b/vm/vm_kmem.h
@@ -90,7 +90,7 @@ unsigned long vm_kmem_alloc(size_t size);
void vm_kmem_free(unsigned long addr, size_t size);
/*
- * Map physical memory in a kernel map.
+ * Map physical memory in the kernel map.
*
* Return the address at which the mapped memory can be accessed. If map_addrp
* and/or map_sizep aren't NULL, they are updated to the address and size of
@@ -106,7 +106,7 @@ void * vm_kmem_map_pa(phys_addr_t addr, size_t size, unsigned long *map_addrp,
size_t *map_sizep);
/*
- * Unmap physical memory from a kernel map.
+ * Unmap physical memory from the kernel map.
*/
void vm_kmem_unmap_pa(unsigned long map_addr, size_t map_size);