Trust uboot's device list only if it does not look suspicious.
[AROS.git] / arch / x86_64-all / kernel / cpu_init.c
blob781c758d2fc85ecede0ad18b2daf64ee21de19db
1 #include <aros/symbolsets.h>
2 #include <exec/types.h>
4 #include "kernel_base.h"
6 static int cpu_Init(struct KernelBase *KernelBase)
8 /* All x86-64 processors have SSE */
9 KernelBase->kb_ContextSize = AROS_ROUNDUP2(sizeof(struct AROSCPUContext), 16) + sizeof(struct FPXContext);
10 return TRUE;
13 ADD2INITLIB(cpu_Init, 5);