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/arch/amd64 | |
parent | 1a2a2e12cdb4712f85c929c054abed14b39d3836 (diff) |
kernel/amd64: cpu: Prefix machdeps with cpu_
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/cpu.c b/sys/arch/amd64/amd64/cpu.c index 0c59730..d8617d8 100644 --- a/sys/arch/amd64/amd64/cpu.c +++ b/sys/arch/amd64/amd64/cpu.c @@ -55,6 +55,6 @@ amd64_this_cpu(void) return amd64_get_bsp(); } - cctx = (void *)read_gs_base(); + cctx = (void *)amd64_read_gs_base(); return cctx->ci; } |