diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-29 13:23:55 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-29 13:23:55 -0500 |
commit | 1805ea2e59d90e0d14636fbac362af4e6f924d85 (patch) | |
tree | e82c1d1c02273d912c6b970daf3844d732d12e29 /sys/include | |
parent | 60e0827762b4cfff1a04d1287139fb23f521ff86 (diff) |
kernel: vm: vm_get_bsp_ctx() -> vm_get_ctx()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/vm/vm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h index 4ea6d22..2a24d76 100644 --- a/sys/include/vm/vm.h +++ b/sys/include/vm/vm.h @@ -60,6 +60,6 @@ vm_get_page_size(void) } void vm_init(void); -struct vm_ctx *vm_get_bsp_ctx(void); +struct vm_ctx *vm_get_ctx(void); #endif /* !_VM_H_ */ |