From 16c45522ecb03de7d5b36b152f8b54bb56b7df6b 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 88a517a..54bd47d 100644 --- a/core/rtw_br_ext.c +++ b/core/rtw_br_ext.c @@ -49,6 +49,7 @@ #include #include #include +#include #endif #endif