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/vm/vm_init.c | |
parent | 60e0827762b4cfff1a04d1287139fb23f521ff86 (diff) |
kernel: vm: vm_get_bsp_ctx() -> vm_get_ctx()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/vm/vm_init.c')
-rw-r--r-- | sys/vm/vm_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index 2a704fe..f15cb0b 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -54,7 +54,7 @@ volatile struct limine_hhdm_request g_hhdm_request = { }; struct vm_ctx * -vm_get_bsp_ctx(void) +vm_get_ctx(void) { return &bsp_vm_ctx; } |