mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 04:25:09 +07:00
14 lines
308 B
C
14 lines
308 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef _ASM_X86_DOUBLEFAULT_H
|
||
|
#define _ASM_X86_DOUBLEFAULT_H
|
||
|
|
||
|
#if defined(CONFIG_X86_32) && defined(CONFIG_DOUBLEFAULT)
|
||
|
extern void doublefault_init_cpu_tss(void);
|
||
|
#else
|
||
|
static inline void doublefault_init_cpu_tss(void)
|
||
|
{
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _ASM_X86_DOUBLEFAULT_H */
|