mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-07 05:36:42 +07:00
16 lines
367 B
C
16 lines
367 B
C
|
#ifndef _ENTRY_H
|
||
|
#define _ENTRY_H
|
||
|
|
||
|
#include <linux/init.h>
|
||
|
|
||
|
extern char *sparc_cpu_type;
|
||
|
extern char *sparc_fpu_type;
|
||
|
|
||
|
extern void __init per_cpu_patch(void);
|
||
|
extern void __init sun4v_patch(void);
|
||
|
extern void __init boot_cpu_id_too_large(int cpu);
|
||
|
extern unsigned int dcache_parity_tl1_occurred;
|
||
|
extern unsigned int icache_parity_tl1_occurred;
|
||
|
|
||
|
#endif /* _ENTRY_H */
|