diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-15 13:54:24 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-15 13:54:24 -0500 |
commit | 3cd865ee381cb323d8b773e2cd1ea448e7ad6a15 (patch) | |
tree | 3c26fe7639952ef86a2bd7ac36b68345296d3207 /sys/include/arch | |
parent | 1a2a2e12cdb4712f85c929c054abed14b39d3836 (diff) |
kernel/amd64: cpu: Prefix machdeps with cpu_
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/arch')
-rw-r--r-- | sys/include/arch/amd64/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/include/arch/amd64/cpu.h b/sys/include/arch/amd64/cpu.h index e6f2de0..cff86f5 100644 --- a/sys/include/arch/amd64/cpu.h +++ b/sys/include/arch/amd64/cpu.h @@ -99,13 +99,13 @@ amd64_is_intr_mask(void) } static inline void -write_gs_base(uintptr_t val) +amd64_write_gs_base(uintptr_t val) { wrmsr(IA32_KERNEL_GS_BASE, val); } static inline uintptr_t -read_gs_base(void) +amd64_read_gs_base(void) { return rdmsr(IA32_KERNEL_GS_BASE); } |