diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-22 21:14:29 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-22 21:14:29 +0300 |
| commit | d99be9e2912e0726ab779053b43a89e3b9e21490 (patch) | |
| tree | ec7bc982d6377f4fde4b3d85cf291a2698ab4254 /common/dmem.c | |
| parent | ae2843b3999f619da3cd4d6a37e488527dc481ac (diff) | |
| download | kmi-d99be9e2912e0726ab779053b43a89e3b9e21490.tar.gz kmi-d99be9e2912e0726ab779053b43a89e3b9e21490.zip | |
rename vm_branch to vmem
+ Closer to what it's for rather than what it is.
Diffstat (limited to 'common/dmem.c')
| -rw-r--r-- | common/dmem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/dmem.c b/common/dmem.c index 6c207c1..a116547 100644 --- a/common/dmem.c +++ b/common/dmem.c @@ -26,7 +26,7 @@ stat_t init_devmem(pm_t ram_base, pm_t ram_top) return OK; } -stat_t dev_alloc_wrapper(struct vm_branch *b, pm_t *offset, vm_t vaddr, +stat_t dev_alloc_wrapper(struct vmem *b, pm_t *offset, vm_t vaddr, vmflags_t flags, enum mm_order order, void *data) { stat_t *status = (stat_t *)data; @@ -36,7 +36,7 @@ stat_t dev_alloc_wrapper(struct vm_branch *b, pm_t *offset, vm_t vaddr, return OK; } -stat_t dev_free_wrapper(struct vm_branch *b, pm_t *offset, vm_t vaddr, +stat_t dev_free_wrapper(struct vmem *b, pm_t *offset, vm_t vaddr, vmflags_t flags, enum mm_order order, void *data) { UNUSED(offset); |
