diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-14 11:19:16 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-14 11:19:16 -0500 |
commit | 04144bdc723f253116a777a22ac074dac6150c59 (patch) | |
tree | fd03c712b7e0dc39fa0db77a4833939482ea922e | |
parent | 686aa1cf45189cc05d1200e1634eec537ab91ff7 (diff) |
kernel: machdep: Remove __weak for some routines
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/include/sys/machdep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/include/sys/machdep.h b/sys/include/sys/machdep.h index 3180e1d..4612dcf 100644 --- a/sys/include/sys/machdep.h +++ b/sys/include/sys/machdep.h @@ -37,10 +37,10 @@ #define MAXCPUS 32 +void processor_init(void); +void processor_halt(void); __weak void chips_init(void); -__weak void processor_init(void); __weak void pre_init(void); -__weak void processor_halt(void); __weak void serial_dbgch(char c); #endif /* defined(_KERNEL) */ |