From: Dou Liyang Date: Wed, 26 Jul 2017 13:34:26 +0000 (+0800) Subject: arm64: numa: Remove the unused parent_node() macro X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=969ff73e72fe903a2354c51e01c1a1f937c544ca;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git arm64: numa: Remove the unused parent_node() macro Commit a7be6e5a7f8d ("mm: drop useless local parameters of __register_one_node()") removes the last user of parent_node(). The parent_node() macro in ARM64 platform is unnecessary. Remove it for cleanup. Reported-by: Michael Ellerman Acked-by: Will Deacon Signed-off-by: Dou Liyang Cc: Michael Ellerman Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Catalin Marinas --- diff --git a/arch/arm64/include/asm/numa.h b/arch/arm64/include/asm/numa.h index bf466d1876e3..ef7b23863a7c 100644 --- a/arch/arm64/include/asm/numa.h +++ b/arch/arm64/include/asm/numa.h @@ -7,9 +7,6 @@ #define NR_NODE_MEMBLKS (MAX_NUMNODES * 2) -/* currently, arm64 implements flat NUMA topology */ -#define parent_node(node) (node) - int __node_distance(int from, int to); #define node_distance(a, b) __node_distance(a, b)