mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-21 08:53:41 +00:00
1965aae3c9
Change header guards named "ASM_X86__*" to "_ASM_X86_*" since: a. the double underscore is ugly and pointless. b. no leading underscore violates namespace constraints. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
13 lines
262 B
C
13 lines
262 B
C
#ifndef _ASM_X86_MACH_DEFAULT__MACH_MPSPEC_H
|
|
#define _ASM_X86_MACH_DEFAULT__MACH_MPSPEC_H
|
|
|
|
#define MAX_IRQ_SOURCES 256
|
|
|
|
#if CONFIG_BASE_SMALL == 0
|
|
#define MAX_MP_BUSSES 256
|
|
#else
|
|
#define MAX_MP_BUSSES 32
|
|
#endif
|
|
|
|
#endif /* _ASM_X86_MACH_DEFAULT__MACH_MPSPEC_H */
|