summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGupta, Kapil <kapgupta@qti.qualcomm.com>2016-05-10 12:54:36 +0530
committerAnjaneedevi Kapparapu <akappa@codeaurora.org>2016-05-19 13:23:18 +0530
commit0e96b8a66048ab5ecfcf870cc61c0734cddcfe3b (patch)
tree08f7fa310f420035db9d6665997a9411180797e4
parent279f1657d3e74ed12c5cb54c9e268119fe3c9748 (diff)
qcacld-2.0: Increase maximum size of oem data request
qcacld-3.0 to qcacld-2.0 propagation Increase maximum size of oem data request from 280 to 500. This change set also remove the following unused macros in UMAC, - OEM_DATA_REQ_SIZE - OEM_DATA_RSP_SIZE Change-Id: I768da4dd03c2de618c528cb72b86a5df72dd2efe CRs-Fixed: 997085
-rw-r--r--CORE/HDD/inc/wlan_hdd_oemdata.h8
-rw-r--r--CORE/MAC/inc/sirApi.h3
-rw-r--r--CORE/MAC/src/pe/include/limGlobal.h7
-rw-r--r--CORE/SME/inc/oemDataApi.h8
-rw-r--r--CORE/WDA/inc/legacy/halMsgApi.h7
5 files changed, 2 insertions, 31 deletions
diff --git a/CORE/HDD/inc/wlan_hdd_oemdata.h b/CORE/HDD/inc/wlan_hdd_oemdata.h
index 296b0d13b0cb..365c45ff5641 100644
--- a/CORE/HDD/inc/wlan_hdd_oemdata.h
+++ b/CORE/HDD/inc/wlan_hdd_oemdata.h
@@ -41,14 +41,6 @@
#ifndef __WLAN_HDD_OEM_DATA_H__
#define __WLAN_HDD_OEM_DATA_H__
-#ifndef OEM_DATA_REQ_SIZE
-#define OEM_DATA_REQ_SIZE 280
-#endif
-
-#ifndef OEM_DATA_RSP_SIZE
-#define OEM_DATA_RSP_SIZE 1724
-#endif
-
#define OEM_APP_SIGNATURE_LEN 16
#define OEM_APP_SIGNATURE_STR "QUALCOMM-OEM-APP"
diff --git a/CORE/MAC/inc/sirApi.h b/CORE/MAC/inc/sirApi.h
index e73e4754d35b..cff7d238013e 100644
--- a/CORE/MAC/inc/sirApi.h
+++ b/CORE/MAC/inc/sirApi.h
@@ -971,8 +971,9 @@ typedef struct sSirSmeScanChanReq
#ifdef FEATURE_OEM_DATA_SUPPORT
#ifndef OEM_DATA_REQ_SIZE
-#define OEM_DATA_REQ_SIZE 280
+#define OEM_DATA_REQ_SIZE 500
#endif
+
#ifndef OEM_DATA_RSP_SIZE
#define OEM_DATA_RSP_SIZE 1724
#endif
diff --git a/CORE/MAC/src/pe/include/limGlobal.h b/CORE/MAC/src/pe/include/limGlobal.h
index a7b4ca803c38..808c961a15fb 100644
--- a/CORE/MAC/src/pe/include/limGlobal.h
+++ b/CORE/MAC/src/pe/include/limGlobal.h
@@ -313,13 +313,6 @@ struct tLimScanResultNode
#ifdef FEATURE_OEM_DATA_SUPPORT
-#ifndef OEM_DATA_REQ_SIZE
-#define OEM_DATA_REQ_SIZE 280
-#endif
-#ifndef OEM_DATA_RSP_SIZE
-#define OEM_DATA_RSP_SIZE 1724
-#endif
-
// OEM Data related structure definitions
typedef struct sLimMlmOemDataReq
{
diff --git a/CORE/SME/inc/oemDataApi.h b/CORE/SME/inc/oemDataApi.h
index 57c2cc41ad38..12ef2d498dc4 100644
--- a/CORE/SME/inc/oemDataApi.h
+++ b/CORE/SME/inc/oemDataApi.h
@@ -42,14 +42,6 @@
#include "sirMacProtDef.h"
#include "csrLinkList.h"
-#ifndef OEM_DATA_REQ_SIZE
-#define OEM_DATA_REQ_SIZE 280
-#endif
-
-#ifndef OEM_DATA_RSP_SIZE
-#define OEM_DATA_RSP_SIZE 1724
-#endif
-
/* message subtype for internal purpose */
#define OEM_MESSAGE_SUBTYPE_INTERNAL 0xdeadbeef
#define OEM_MESSAGE_SUBTYPE_LEN 4
diff --git a/CORE/WDA/inc/legacy/halMsgApi.h b/CORE/WDA/inc/legacy/halMsgApi.h
index 3ead091673b0..cf0e7352f369 100644
--- a/CORE/WDA/inc/legacy/halMsgApi.h
+++ b/CORE/WDA/inc/legacy/halMsgApi.h
@@ -742,13 +742,6 @@ typedef struct {
#ifdef FEATURE_OEM_DATA_SUPPORT
-#ifndef OEM_DATA_REQ_SIZE
-#define OEM_DATA_REQ_SIZE 280
-#endif
-#ifndef OEM_DATA_RSP_SIZE
-#define OEM_DATA_RSP_SIZE 1724
-#endif
-
typedef struct
{
tSirMacAddr selfMacAddr;