mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
13 lines
229 B
C
13 lines
229 B
C
|
#ifndef _ASM_X86_APICNUM_H
|
||
|
#define _ASM_X86_APICNUM_H
|
||
|
|
||
|
/* define MAX_IO_APICS */
|
||
|
#ifdef CONFIG_X86_32
|
||
|
# define MAX_IO_APICS 64
|
||
|
#else
|
||
|
# define MAX_IO_APICS 128
|
||
|
# define MAX_LOCAL_APIC 32768
|
||
|
#endif
|
||
|
|
||
|
#endif /* _ASM_X86_APICNUM_H */
|