diff options
author | Stephen Hemminger <stephen@networkplumber.org> | 2018-07-18 09:32:44 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-20 12:33:37 -0700 |
commit | 5761917a1aac77f40885ec17a3e1d50ab0c737c4 (patch) | |
tree | df30403404c0e671a915e4412c9052569db691b6 /drivers/net | |
parent | a86c4120528f0c87b10837abbe3eada542791177 (diff) |
gtp: constify nla_policy
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>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/gtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/gtp.c b/drivers/net/gtp.c index ec629a730005..7a145172d503 100644 --- a/drivers/net/gtp.c +++ b/drivers/net/gtp.c @@ -1255,7 +1255,7 @@ out: 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, }, |