mirror of
https://github.com/RinCat/RTL88x2BU-Linux-Driver.git
synced 2024-11-10 01:02:50 +00:00
Linux 5.3 compat: vendor command policy
This commit is contained in:
parent
f119d1bc18
commit
953142179e
@ -1299,6 +1299,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_GET_CAPABILITIES
|
.subcmd = GSCAN_SUBCMD_GET_CAPABILITIES
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_gscan_get_capabilities
|
.doit = rtw_cfgvendor_gscan_get_capabilities
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1307,6 +1310,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_SET_CONFIG
|
.subcmd = GSCAN_SUBCMD_SET_CONFIG
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_set_scan_cfg
|
.doit = rtw_cfgvendor_set_scan_cfg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1315,6 +1321,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_SET_SCAN_CONFIG
|
.subcmd = GSCAN_SUBCMD_SET_SCAN_CONFIG
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_set_batch_scan_cfg
|
.doit = rtw_cfgvendor_set_batch_scan_cfg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1323,6 +1332,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_ENABLE_GSCAN
|
.subcmd = GSCAN_SUBCMD_ENABLE_GSCAN
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_initiate_gscan
|
.doit = rtw_cfgvendor_initiate_gscan
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1331,6 +1343,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_ENABLE_FULL_SCAN_RESULTS
|
.subcmd = GSCAN_SUBCMD_ENABLE_FULL_SCAN_RESULTS
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_enable_full_scan_result
|
.doit = rtw_cfgvendor_enable_full_scan_result
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1339,6 +1354,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_SET_HOTLIST
|
.subcmd = GSCAN_SUBCMD_SET_HOTLIST
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_hotlist_cfg
|
.doit = rtw_cfgvendor_hotlist_cfg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1347,6 +1365,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_SET_SIGNIFICANT_CHANGE_CONFIG
|
.subcmd = GSCAN_SUBCMD_SET_SIGNIFICANT_CHANGE_CONFIG
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_significant_change_cfg
|
.doit = rtw_cfgvendor_significant_change_cfg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1355,6 +1376,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_GET_SCAN_RESULTS
|
.subcmd = GSCAN_SUBCMD_GET_SCAN_RESULTS
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_gscan_get_batch_results
|
.doit = rtw_cfgvendor_gscan_get_batch_results
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1363,6 +1387,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = GSCAN_SUBCMD_GET_CHANNEL_LIST
|
.subcmd = GSCAN_SUBCMD_GET_CHANNEL_LIST
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_gscan_get_channel_list
|
.doit = rtw_cfgvendor_gscan_get_channel_list
|
||||||
},
|
},
|
||||||
#endif /* GSCAN_SUPPORT */
|
#endif /* GSCAN_SUPPORT */
|
||||||
@ -1373,6 +1400,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = RTT_SUBCMD_SET_CONFIG
|
.subcmd = RTT_SUBCMD_SET_CONFIG
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_rtt_set_config
|
.doit = rtw_cfgvendor_rtt_set_config
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1381,6 +1411,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = RTT_SUBCMD_CANCEL_CONFIG
|
.subcmd = RTT_SUBCMD_CANCEL_CONFIG
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_rtt_cancel_config
|
.doit = rtw_cfgvendor_rtt_cancel_config
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1389,6 +1422,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = RTT_SUBCMD_GETCAPABILITY
|
.subcmd = RTT_SUBCMD_GETCAPABILITY
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_rtt_get_capability
|
.doit = rtw_cfgvendor_rtt_get_capability
|
||||||
},
|
},
|
||||||
#endif /* RTT_SUPPORT */
|
#endif /* RTT_SUPPORT */
|
||||||
@ -1399,6 +1435,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = LSTATS_SUBCMD_GET_INFO
|
.subcmd = LSTATS_SUBCMD_GET_INFO
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_lstats_get_info
|
.doit = rtw_cfgvendor_lstats_get_info
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1407,6 +1446,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = LSTATS_SUBCMD_SET_INFO
|
.subcmd = LSTATS_SUBCMD_SET_INFO
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_lstats_set_info
|
.doit = rtw_cfgvendor_lstats_set_info
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1415,6 +1457,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = LSTATS_SUBCMD_CLEAR_INFO
|
.subcmd = LSTATS_SUBCMD_CLEAR_INFO
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_lstats_clear_info
|
.doit = rtw_cfgvendor_lstats_clear_info
|
||||||
},
|
},
|
||||||
#endif /* CONFIG_RTW_CFGVEDNOR_LLSTATS */
|
#endif /* CONFIG_RTW_CFGVEDNOR_LLSTATS */
|
||||||
@ -1424,6 +1469,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = WIFI_SUBCMD_GET_FEATURE_SET
|
.subcmd = WIFI_SUBCMD_GET_FEATURE_SET
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_get_feature_set
|
.doit = rtw_cfgvendor_get_feature_set
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -1432,6 +1480,9 @@ static const struct wiphy_vendor_command rtw_vendor_cmds[] = {
|
|||||||
.subcmd = WIFI_SUBCMD_GET_FEATURE_SET_MATRIX
|
.subcmd = WIFI_SUBCMD_GET_FEATURE_SET_MATRIX
|
||||||
},
|
},
|
||||||
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
.flags = WIPHY_VENDOR_CMD_NEED_WDEV | WIPHY_VENDOR_CMD_NEED_NETDEV,
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)
|
||||||
|
.policy = VENDOR_CMD_RAW_DATA,
|
||||||
|
#endif
|
||||||
.doit = rtw_cfgvendor_get_feature_set_matrix
|
.doit = rtw_cfgvendor_get_feature_set_matrix
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user