From: Michael Kelley Date: Tue, 30 May 2017 18:36:56 +0000 (-0700) Subject: netvsc: Add #include's for csum_* function declarations X-Git-Tag: v4.13~415^2~333 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8eb1b3c336b36421bd6673ec02222cb57e52372d;p=mirror_ubuntu-bionic-kernel.git netvsc: Add #include's for csum_* function declarations Add direct #include statements for declarations of csum_tcpudp_magic() and csum_ipv6_magic(). While the needed #include's are picked up indirectly for the x86 architecture, they aren't on other architectures, resulting in compile errors. Signed-off-by: Michael Kelley Signed-off-by: David S. Miller --- diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c index 4421a6d00375..2564ac83eb64 100644 --- a/drivers/net/hyperv/netvsc_drv.c +++ b/drivers/net/hyperv/netvsc_drv.c @@ -37,6 +37,8 @@ #include #include #include +#include +#include #include "hyperv_net.h"