From: Gonglei Subject: [PATCH v6 1/2] sparc: fix a building error reported by kbuild Date: Thu, 8 Dec 2016 12:37:08 +0800 Message-ID: <1481171829-116496-2-git-send-email-arei.gonglei@huawei.com> References: <1481171829-116496-1-git-send-email-arei.gonglei@huawei.com> Mime-Version: 1.0 Content-Type: text/plain Cc: , , , , , , , , , , , , , , , , , Gonglei , Sam Ravnborg , To: , , , , Return-path: In-Reply-To: <1481171829-116496-1-git-send-email-arei.gonglei@huawei.com> Sender: sparclinux-owner@vger.kernel.org List-Id: linux-crypto.vger.kernel.org >> arch/sparc/include/asm/topology_64.h:44:44: error: implicit declaration of function 'cpu_data' [-Werror=implicit-function-declaration] #define topology_physical_package_id(cpu) (cpu_data(cpu).proc_id) ^ Let's include cpudata.h in topology_64.h. Cc: Sam Ravnborg Cc: David S. Miller Cc: sparclinux@vger.kernel.org Suggested-by: Sam Ravnborg Signed-off-by: Gonglei --- arch/sparc/include/asm/topology_64.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/sparc/include/asm/topology_64.h b/arch/sparc/include/asm/topology_64.h index 7b4898a..2255430 100644 --- a/arch/sparc/include/asm/topology_64.h +++ b/arch/sparc/include/asm/topology_64.h @@ -4,6 +4,7 @@ #ifdef CONFIG_NUMA #include +#include static inline int cpu_to_node(int cpu) { -- 1.8.3.1