Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5761917a authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller
Browse files

gtp: constify nla_policy



The netlink policy structure can be constant like other
drivers.

Signed-off-by: default avatarStephen Hemminger <stephen@networkplumber.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a86c4120
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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, },