mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 04:25:27 +08:00
7e990266c8
Allow boards to provide a panic callback on ppc32. Moved the code to sets this up into setup-common.c so its shared between ppc32 & ppc64. Also moved do_init_bootmem prototype into setup.h. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9 lines
184 B
C
9 lines
184 B
C
#ifndef _POWERPC_KERNEL_SETUP_H
|
|
#define _POWERPC_KERNEL_SETUP_H
|
|
|
|
void check_for_initrd(void);
|
|
void do_init_bootmem(void);
|
|
void setup_panic(void);
|
|
|
|
#endif /* _POWERPC_KERNEL_SETUP_H */
|