1 /* 2 * Copyright 2019 Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #include <KernelExport.h> 6 #include <arch/platform.h> 7 #include <boot/kernel_args.h> 8 9 10 status_t 11 arch_platform_init(struct kernel_args *kernelArgs) 12 { 13 return B_OK; 14 } 15 16 17 status_t 18 arch_platform_init_post_vm(struct kernel_args *kernelArgs) 19 { 20 return B_OK; 21 } 22 23 24 status_t 25 arch_platform_init_post_thread(struct kernel_args *kernelArgs) 26 { 27 return B_OK; 28 } 29