From d084dea00022a0e3f029da445426d4bab9c7e091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Garc=C3=A9s?= Date: Sat, 13 May 2017 15:41:51 +0200 Subject: [PATCH] Fix compilation for ARM64 arch The kernel module failed to build on arm64 platform. Other platforms like x86 can build without problem because the csum_ipv6_magic function are defined in arch specific asm/checksum.h, which is missing on arm64 platform. --- core/rtw_br_ext.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/rtw_br_ext.c b/core/rtw_br_ext.c index 024049c..178051a 100644 --- a/core/rtw_br_ext.c +++ b/core/rtw_br_ext.c @@ -52,6 +52,7 @@ #include #else #include +#include #endif #endif #endif