Files
Linux_Drivers/linux_5.10/arch/s390/include/asm/numa.h
sam.xiang 5c7dd7acc3 [linux] create linux_5.10.4 from T-head official:
repo: https://github.com/T-head-Semi/linux
	commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb

Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
2023-03-10 20:32:41 +08:00

26 lines
386 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* NUMA support for s390
*
* Declare the NUMA core code structures and functions.
*
* Copyright IBM Corp. 2015
*/
#ifndef _ASM_S390_NUMA_H
#define _ASM_S390_NUMA_H
#ifdef CONFIG_NUMA
#include <linux/numa.h>
void numa_setup(void);
#else
static inline void numa_setup(void) { }
#endif /* CONFIG_NUMA */
#endif /* _ASM_S390_NUMA_H */