diff options
author | Ian Moffett <ian@osmora.org> | 2023-12-11 18:48:03 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2023-12-11 18:48:03 -0500 |
commit | 178d53d53e91984549d05ab0e5767c210ecb71cd (patch) | |
tree | bc20f8d7a4496c59c88bd7332db2223e5cfee817 | |
parent | db8a92042073683ed115ad588f21f297b3fd06d6 (diff) |
kernel/amd64: machdep: Add module info
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/arch/amd64/machdep.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/arch/amd64/machdep.c b/sys/arch/amd64/machdep.c index f5281aa..9881619 100644 --- a/sys/arch/amd64/machdep.c +++ b/sys/arch/amd64/machdep.c @@ -36,6 +36,10 @@ #include <machine/lapic.h> #include <machine/spectre.h> +__MODULE_NAME("machdep"); +__KERNEL_META("$Hyra$: machdep.c, Ian Marco Moffett, " + "Core machine dependent code"); + #define ISR(func) ((uintptr_t)func) #define INIT_FLAG_IOAPIC 0x00000001U |