diff options
| author | Alejandro Sior <aho@sior.be> | 2022-07-29 10:43:46 +0200 |
|---|---|---|
| committer | Alejandro Sior <aho@sior.be> | 2022-07-29 10:43:46 +0200 |
| commit | 3e88a00f88e39420c44fcdcea873c8b0c3f6f105 (patch) | |
| tree | bc67c5e39d3896f8bc9ae219b3ab6fdb3b8b12e9 /mem/vmap.h | |
| parent | e1e299083d1469177f4e5787a78c136923091f3a (diff) | |
mem: correct return type of unmap
Diffstat (limited to 'mem/vmap.h')
| -rw-r--r-- | mem/vmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ typedef struct mem_vmap MemVmap; typedef usize (*MemVmapTranslate)(MemVmap *, usize); typedef int (*MemVmapMap)(MemVmap *, usize, usize, usize, int); -typedef int (*MemVmapUnmap)(MemVmap *, usize, usize); +typedef void (*MemVmapUnmap)(MemVmap *, usize, usize); typedef void (*MemVmapSwitchTo)(MemVmap *); /* Structure abstracting the memory mapping facilities of |
