xref: /linux/arch/x86/include/asm/mmzone_32.h (revision 0be3ff0c)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Written by Pat Gaughen (gone@us.ibm.com) Mar 2002
4  *
5  */
6 
7 #ifndef _ASM_X86_MMZONE_32_H
8 #define _ASM_X86_MMZONE_32_H
9 
10 #include <asm/smp.h>
11 
12 #ifdef CONFIG_NUMA
13 extern struct pglist_data *node_data[];
14 #define NODE_DATA(nid)	(node_data[nid])
15 #endif /* CONFIG_NUMA */
16 
17 #endif /* _ASM_X86_MMZONE_32_H */
18