aboutsummaryrefslogtreecommitdiff
path: root/sys/include/vm
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-01-11 23:06:04 -0500
committerIan Moffett <ian@osmora.org>2024-01-12 00:04:50 -0500
commit213679c7c1ee8c5a482f35fbcd62a48758f6cf12 (patch)
treecb2ad0f12286deed79105fbe2960b26fce9bb649 /sys/include/vm
parent089405dd59157c3a652fcc5d1b28141bb0546eb9 (diff)
kernel: vm: Make vm_get_bsp_ctx() return pointer
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/vm')
-rw-r--r--sys/include/vm/vm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h
index 1bbe500..4ea6d22 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_bsp_ctx(void);
#endif /* !_VM_H_ */