qcacld-3.0: Add policy attribute to INTEROP_ISSUES_AP

According to new changes in kernel 5.4 version onwards, driver has to
provide the policy for a NL command to be verified against while
registering wiphy to the kernel.

To satisfy kernel 5.4 requirement add policy to following vendor
command as part of this change:
	QCA_NL80211_VENDOR_SUBCMD_INTEROP_ISSUES_AP

Change-Id: I7cce1632efed4cbb3c431c449bf82ec8353b4bb2
CRs-Fixed: 2635041
This commit is contained in:
Alan Chen 2020-03-04 13:05:10 -08:00 committed by nshrivas
parent 6530f59011
commit f2994c53c0

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
* Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@ -28,9 +28,14 @@
#include <wlan_objmgr_cmn.h>
#include <qdf_types.h>
#include <net/cfg80211.h>
#include <qca_vendor.h>
#ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
extern const struct nla_policy
interop_issues_ap_policy
[QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_MAX + 1];
#define FEATURE_INTEROP_ISSUES_AP_VENDOR_COMMANDS \
{ \
.info.vendor_id = QCA_NL80211_VENDOR_ID, \
@ -38,7 +43,9 @@
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | \
WIPHY_VENDOR_CMD_NEED_NETDEV | \
WIPHY_VENDOR_CMD_NEED_RUNNING, \
.doit = wlan_cfg80211_set_interop_issues_ap_config \
.doit = wlan_cfg80211_set_interop_issues_ap_config, \
vendor_command_policy(interop_issues_ap_policy, \
QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_MAX) \
},
#define FEATURE_INTEROP_ISSUES_AP_VENDOR_COMMANDS_INDEX \