mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 06:24:53 +08:00
ae3c107cd8
ARM64 numa implementation is generic enough that RISC-V can reuse that implementation with very minor cosmetic changes. This will help both ARM64 and RISC-V in terms of maintanace and feature improvement Move the numa implementation code to common directory so that both ISAs can reuse this. This doesn't introduce any function changes for ARM64. Signed-off-by: Atish Patra <atish.patra@wdc.com> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Tested-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
9 lines
165 B
C
9 lines
165 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_NUMA_H
|
|
#define __ASM_NUMA_H
|
|
|
|
#include <asm/topology.h>
|
|
#include <asm-generic/numa.h>
|
|
|
|
#endif /* __ASM_NUMA_H */
|