arch/x86: alter signature of z_x86_prep_c() function

Take a dummy first argument, so that the BSP entry point (z_x86_prep_c)
has the same signature as the AP entry point (smp_init_top).

Signed-off-by: Charles E. Youse <charles.youse@intel.com>
This commit is contained in:
Charles E. Youse 2019-09-28 21:26:00 -04:00 committed by Anas Nashif
commit 2808908816
4 changed files with 6 additions and 3 deletions

View file

@ -9,7 +9,7 @@
#include <kernel_structs.h>
#include <arch/x86/multiboot.h>
extern FUNC_NORETURN void z_x86_prep_c(struct multiboot_info *);
extern FUNC_NORETURN void z_x86_prep_c(int, struct multiboot_info *);
extern u8_t _exception_stack[];