start_kernel.h 415 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_START_KERNEL_H
  3. #define _LINUX_START_KERNEL_H
  4. #include <linux/linkage.h>
  5. #include <linux/init.h>
  6. /* Define the prototype for start_kernel here, rather than cluttering
  7. up something else. */
  8. extern asmlinkage void __init start_kernel(void);
  9. extern void __init arch_call_rest_init(void);
  10. extern void __ref rest_init(void);
  11. #endif /* _LINUX_START_KERNEL_H */