qcacld-3.0: Increase maximum size of oem data request

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
This commit is contained in:
Krishna Kumaar Natarajan
2016-03-30 16:21:23 -07:00
committed by Gerrit - the friendly Code Review server
parent b7f9a35ce8
commit ee4dbedf8f
5 changed files with 1 additions and 26 deletions

View File

@@ -37,7 +37,7 @@
#ifdef FEATURE_OEM_DATA_SUPPORT #ifdef FEATURE_OEM_DATA_SUPPORT
#ifndef OEM_DATA_REQ_SIZE #ifndef OEM_DATA_REQ_SIZE
#define OEM_DATA_REQ_SIZE 280 #define OEM_DATA_REQ_SIZE 500
#endif #endif
#ifndef OEM_DATA_RSP_SIZE #ifndef OEM_DATA_RSP_SIZE

View File

@@ -845,13 +845,6 @@ typedef struct sSirSmeScanChanReq {
#ifdef FEATURE_OEM_DATA_SUPPORT #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 sSirOemDataReq { typedef struct sSirOemDataReq {
uint16_t messageType; /* eWNI_SME_OEM_DATA_REQ */ uint16_t messageType; /* eWNI_SME_OEM_DATA_REQ */
uint16_t messageLen; uint16_t messageLen;

View File

@@ -287,13 +287,6 @@ struct tLimScanResultNode {
#ifdef FEATURE_OEM_DATA_SUPPORT #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 */ /* OEM Data related structure definitions */
typedef struct sLimMlmOemDataReq { typedef struct sLimMlmOemDataReq {
struct qdf_mac_addr selfMacAddr; struct qdf_mac_addr selfMacAddr;

View File

@@ -39,14 +39,6 @@
#include "sir_mac_prot_def.h" #include "sir_mac_prot_def.h"
#include "csr_link_list.h" #include "csr_link_list.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 */ /* message subtype for internal purpose */
#define OEM_MESSAGE_SUBTYPE_INTERNAL 0xdeadbeef #define OEM_MESSAGE_SUBTYPE_INTERNAL 0xdeadbeef
#define OEM_MESSAGE_SUBTYPE_LEN 4 #define OEM_MESSAGE_SUBTYPE_LEN 4

View File

@@ -659,9 +659,6 @@ typedef struct {
#ifdef FEATURE_OEM_DATA_SUPPORT #ifdef FEATURE_OEM_DATA_SUPPORT
#ifndef OEM_DATA_REQ_SIZE
#define OEM_DATA_REQ_SIZE 280
#endif
#ifndef OEM_DATA_RSP_SIZE #ifndef OEM_DATA_RSP_SIZE
#define OEM_DATA_RSP_SIZE 1724 #define OEM_DATA_RSP_SIZE 1724
#endif #endif