From 3a45fc68e029579dca41122697d659217f81b702 Mon Sep 17 00:00:00 2001 From: Andreas Schultz Date: Thu, 29 Oct 2015 12:38:58 +0100 Subject: [PATCH] gtp: remove genl_ops compat ifdef for Linux < 3.13 Signed-off-by: Andreas Schultz Signed-off-by: Pablo Neira Ayuso --- gtp.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gtp.c b/gtp.c index 61db1c3..6eb1178 100644 --- a/gtp.c +++ b/gtp.c @@ -1291,11 +1291,7 @@ static struct nla_policy gtp_genl_policy[GTPA_MAX + 1] = { [GTPA_FLOW] = { .type = NLA_U16, }, }; -#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 13, 0) static const struct genl_ops gtp_genl_ops[] = { -#else -static struct genl_ops gtp_genl_ops[] = { -#endif { .cmd = GTP_CMD_TUNNEL_NEW, .doit = gtp_genl_tunnel_new,