From: Luis R. Rodriguez Date: Sat, 1 Dec 2012 18:50:33 +0000 (-0800) Subject: compat: fix addition of NETIF_F_RXCSUM X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=f54c031909079057832aa824b20faadab42b792c;p=openwrt%2Fstaging%2Fblogic.git compat: fix addition of NETIF_F_RXCSUM This needs to be defined to something and although ckmake passed, no code was using it so we were unable to test it at compile time really. Signed-off-by: Luis R. Rodriguez --- diff --git a/include/linux/compat-2.6.39.h b/include/linux/compat-2.6.39.h index 4909c4602f0a..e02ac9b6d4ae 100644 --- a/include/linux/compat-2.6.39.h +++ b/include/linux/compat-2.6.39.h @@ -9,7 +9,7 @@ #include #include -#define NETIF_F_RXCSUM +#define NETIF_F_RXCSUM 0 #define tiocmget(tty) tiocmget(tty, NULL) #define tiocmset(tty, set, clear) tiocmset(tty, NULL, set, clear)