qcacld-3.0: Update GENERIC_DATA length and Kbuild

Update Kbuild with SON binaries based on SON config flag
and GENERIC_DATA policy with proper length

Change-Id: I60d06b3bdcc600095d7e9ad779e9b779f5477e33
CRs-Fixed: 3136142
This commit is contained in:
Rachit Kankane
2021-08-26 14:43:21 +05:30
gecommit door Madan Koyyalamudi
bovenliggende 8b4573e5f4
commit 5a17d9e4e9
3 gewijzigde bestanden met toevoegingen van 11 en 6 verwijderingen

Bestand weergeven

@@ -1,6 +1,6 @@
/*
* Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -135,7 +135,9 @@ static QDF_STATUS p2p_vdev_check_valid(struct tx_action_context *tx_ctx)
(tx_ctx->frame_info.sub_type == P2P_MGMT_ACTION) &&
(tx_ctx->frame_info.public_action_type ==
P2P_PUBLIC_ACTION_NOT_SUPPORT) &&
(tx_ctx->frame_info.action_type == P2P_ACTION_NOT_SUPPORT)) {
(tx_ctx->frame_info.action_type == P2P_ACTION_NOT_SUPPORT) &&
!(wlan_vdev_mlme_feat_cap_get(vdev, WLAN_VDEV_F_SON) &&
!tx_ctx->off_chan)) {
p2p_debug("drop action frame for SAP");
status = QDF_STATUS_E_FAILURE;
}
@@ -182,7 +184,9 @@ static QDF_STATUS p2p_vdev_check_valid(struct tx_action_context *tx_ctx)
(tx_ctx->frame_info.sub_type == P2P_MGMT_ACTION) &&
(tx_ctx->frame_info.public_action_type ==
P2P_PUBLIC_ACTION_NOT_SUPPORT) &&
(tx_ctx->frame_info.action_type == P2P_ACTION_NOT_SUPPORT)) {
(tx_ctx->frame_info.action_type == P2P_ACTION_NOT_SUPPORT) &&
!(wlan_vdev_mlme_feat_cap_get(vdev, WLAN_VDEV_F_SON) &&
!tx_ctx->off_chan)) {
p2p_debug("drop action frame for SAP");
status = QDF_STATUS_E_FAILURE;
}