blob: 23cd5d1b734bcefb6f76958687507f8b1de94e86 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * NUMA support for s390
4 *
5 * Declare the NUMA core code structures and functions.
6 *
7 * Copyright IBM Corp. 2015
8 */
9
10#ifndef _ASM_S390_NUMA_H
11#define _ASM_S390_NUMA_H
12
13#ifdef CONFIG_NUMA
14
15#include <linux/numa.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016
17void numa_setup(void);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000018
19#else
20
21static inline void numa_setup(void) { }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000022
23#endif /* CONFIG_NUMA */
Olivier Deprez157378f2022-04-04 15:47:50 +020024
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000025#endif /* _ASM_S390_NUMA_H */