Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6cacddd authored by Maheswara Sarma's avatar Maheswara Sarma
Browse files

Merge commit '2330cf7c' into wlan-cld3.driver.lnx.2.0.8.r3-rel

Change-Id: I9a60d762167625731eb533342c20c1e99edea5bb
parents 01d8ca30 2330cf7c
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -7,6 +7,10 @@ ENABLE_QCACLD := true
endif
endif

ifeq ($(BOARD_COMMON_DIR),)
    BOARD_COMMON_DIR := device/qcom/common
endif

ifeq  ($(ENABLE_QCACLD), true)
# Android makefile for the WLAN Module
LOCAL_PATH := $(call my-dir)
@@ -105,7 +109,7 @@ endif

# DLKM_DIR was moved for JELLY_BEAN (PLATFORM_SDK 16)
ifeq ($(call is-platform-sdk-version-at-least,16),true)
	DLKM_DIR := $(TOP)/device/qcom/common/dlkm
	DLKM_DIR := $(TOP)/$(BOARD_COMMON_DIR)/dlkm
else
	DLKM_DIR := build/dlkm
endif # platform-sdk-version
+0 −1
Original line number Diff line number Diff line
@@ -2694,7 +2694,6 @@ cppflags-$(CONFIG_PLD_PCIE_INIT_FLAG) += -DCONFIG_PLD_PCIE_INIT
cppflags-$(CONFIG_WLAN_FEATURE_DP_RX_THREADS) += -DFEATURE_WLAN_DP_RX_THREADS
cppflags-$(CONFIG_WLAN_FEATURE_RX_SOFTIRQ_TIME_LIMIT) += -DWLAN_FEATURE_RX_SOFTIRQ_TIME_LIMIT
cppflags-$(CONFIG_FEATURE_HAL_DELAYED_REG_WRITE) += -DFEATURE_HAL_DELAYED_REG_WRITE
cppflags-$(CONFIG_FEATURE_HAL_DELAYED_REG_WRITE_V2) += -DFEATURE_HAL_DELAYED_REG_WRITE_V2
cppflags-$(CONFIG_QCA_OL_DP_SRNG_LOCK_LESS_ACCESS) += -DQCA_OL_DP_SRNG_LOCK_LESS_ACCESS
cppflags-$(CONFIG_SHADOW_WRITE_DELAY) += -DSHADOW_WRITE_DELAY

+1 −2
Original line number Diff line number Diff line
@@ -2600,8 +2600,7 @@ QDF_STATUS policy_mgr_set_chan_switch_complete_evt(
		return QDF_STATUS_SUCCESS;
	}

	status = qdf_event_set(
			&pm_ctx->channel_switch_complete_evt);
	status = qdf_event_set_all(&pm_ctx->channel_switch_complete_evt);

	if (!QDF_IS_STATUS_SUCCESS(status)) {
		policy_mgr_err("set event failed");
+11 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
 * Copyright (c) 2021 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
@@ -216,6 +217,14 @@ struct mscs_req_info {
};
#endif

/**
 *  * struct mlme_connect_info - mlme connect information
 *  @ext_cap_ie: Ext CAP IE
 */
struct mlme_connect_info {
	uint8_t ext_cap_ie[DOT11F_IE_EXTCAP_MAX_LEN + 2];
};

/**
 * struct mlme_legacy_priv - VDEV MLME legacy priv object
 * @chan_switch_in_progress: flag to indicate that channel switch is in progress
@@ -252,6 +261,7 @@ struct mscs_req_info {
 * @ba_2k_jump_iot_ap: This is set to true if connected to the ba 2k jump IOT AP
 * @bad_htc_he_iot_ap: Set to true if connected to AP who can't decode htc he
 * @is_usr_ps_enabled: Is Power save enabled
 * @connect_info: mlme connect information
 */
struct mlme_legacy_priv {
	bool chan_switch_in_progress;
@@ -291,6 +301,7 @@ struct mlme_legacy_priv {
	bool ba_2k_jump_iot_ap;
	bool bad_htc_he_iot_ap;
	bool is_usr_ps_enabled;
	struct mlme_connect_info connect_info;
};


+4 −4
Original line number Diff line number Diff line
@@ -113,16 +113,16 @@
#define CFG_VHT_RX_SUPP_DATA_RATE CFG_UINT( \
		"rx_supp_data_rate", \
		0, \
		866, \
		866, \
		780, \
		780, \
		CFG_VALUE_OR_DEFAULT, \
		"VHT RX SUPP DATA RATE")

#define CFG_VHT_TX_SUPP_DATA_RATE CFG_UINT( \
		"tx_supp_data_rate", \
		0, \
		866, \
		866, \
		780, \
		780, \
		CFG_VALUE_OR_DEFAULT, \
		"VHT TX SUPP DATA RATE")

Loading