]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
gtp: constify nla_policy
authorStephen Hemminger <stephen@networkplumber.org>
Wed, 18 Jul 2018 16:32:44 +0000 (09:32 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 20 Jul 2018 19:33:37 +0000 (12:33 -0700)
The netlink policy structure can be constant like other
drivers.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/gtp.c

index ec629a730005273924c40ace6977ad7fedecc315..7a145172d50385f56f54e4b114ab6194fd672ca5 100644 (file)
@@ -1255,7 +1255,7 @@ static int gtp_genl_dump_pdp(struct sk_buff *skb,
        return skb->len;
 }
 
-static struct nla_policy gtp_genl_policy[GTPA_MAX + 1] = {
+static const struct nla_policy gtp_genl_policy[GTPA_MAX + 1] = {
        [GTPA_LINK]             = { .type = NLA_U32, },
        [GTPA_VERSION]          = { .type = NLA_U32, },
        [GTPA_TID]              = { .type = NLA_U64, },