Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 2 | #ifndef _LINUX_START_KERNEL_H |
| 3 | #define _LINUX_START_KERNEL_H |
| 4 | |
| 5 | #include <linux/linkage.h> |
| 6 | #include <linux/init.h> |
| 7 | |
| 8 | /* Define the prototype for start_kernel here, rather than cluttering |
| 9 | up something else. */ |
| 10 | |
| 11 | extern asmlinkage void __init start_kernel(void); |
Martin Schwidefsky | 53c99bd6 | 2018-08-31 10:42:24 +0200 | [diff] [blame] | 12 | extern void __init arch_call_rest_init(void); |
| 13 | extern void __ref rest_init(void); |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 14 | |
| 15 | #endif /* _LINUX_START_KERNEL_H */ |