diff options
Diffstat (limited to 'include/device')
-rw-r--r-- | include/device/processor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/device/processor.h b/include/device/processor.h index 33deed4..e0ec16c 100644 --- a/include/device/processor.h +++ b/include/device/processor.h @@ -1,9 +1,7 @@ #ifndef _JOVE_DEVICE_PROCESSOR_H #define _JOVE_DEVICE_PROCESSOR_H 1 -#if defined(__x86_64__) -#include "arch/x86_64/processor.h" -#endif +#include "object.h" /**@FUNC Initialize the bootstrap processor.*/ void bsp_setup(void); @@ -19,4 +17,6 @@ void processor_setup(void* processor); * @RET pointer to current processor.*/ void *processor_current(void); +objdir_t *processor_get_objdir(void *processor); + #endif |