Commit 205d2429 authored by Johannes Berg's avatar Johannes Berg
Browse files

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: default avatarJohannes Berg <johannes.berg@intel.com>
parent f1e3d556
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,