mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 20:48:49 +08:00
batman: make netlink attributes const
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
85bae4bd8a
commit
deeb91f59d
@ -62,11 +62,11 @@ enum batadv_netlink_multicast_groups {
|
||||
BATADV_NL_MCGRP_TPMETER,
|
||||
};
|
||||
|
||||
static struct genl_multicast_group batadv_netlink_mcgrps[] = {
|
||||
static const struct genl_multicast_group batadv_netlink_mcgrps[] = {
|
||||
[BATADV_NL_MCGRP_TPMETER] = { .name = BATADV_NL_MCAST_GROUP_TPMETER },
|
||||
};
|
||||
|
||||
static struct nla_policy batadv_netlink_policy[NUM_BATADV_ATTR] = {
|
||||
static const struct nla_policy batadv_netlink_policy[NUM_BATADV_ATTR] = {
|
||||
[BATADV_ATTR_VERSION] = { .type = NLA_STRING },
|
||||
[BATADV_ATTR_ALGO_NAME] = { .type = NLA_STRING },
|
||||
[BATADV_ATTR_MESH_IFINDEX] = { .type = NLA_U32 },
|
||||
|
Loading…
Reference in New Issue
Block a user