mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 02:21:47 +00:00
mac80211_hwsim: make netlink policy const
The netlink policy in hwsim should be const, there's no reason for it not to be. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
f1e3d556a0
commit
205d242997
@ -451,7 +451,7 @@ static struct genl_family hwsim_genl_family = {
|
||||
|
||||
/* MAC80211_HWSIM netlink policy */
|
||||
|
||||
static struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = {
|
||||
static const struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = {
|
||||
[HWSIM_ATTR_ADDR_RECEIVER] = { .type = NLA_UNSPEC, .len = ETH_ALEN },
|
||||
[HWSIM_ATTR_ADDR_TRANSMITTER] = { .type = NLA_UNSPEC, .len = ETH_ALEN },
|
||||
[HWSIM_ATTR_FRAME] = { .type = NLA_BINARY,
|
||||
|
Loading…
Reference in New Issue
Block a user