Skip to content
Permalink
Browse files
MLK-24484 net: wireless: nxp: mxm_wifiex: upgrade to mxm4x17186.p2 re…
…lease

The MxM wifi driver upgrade to:
ssh://git@bitbucket.sw.nxp.com/wcswrel/
rel-nxp-wifi-fp92-bt-fp92-linux-android-mxm4x17186.p2-mgpl.git

Changes mxm4x17186 -> mxm4x17186.p2:
- Increase extended scan timeout to 100 seconds.
- Increase shared memory buffers entries to 40.
- Append IE as a pass through TLV type to the request no matter FT AKM is used.

Reviewed-by: yang.tian <yang.tian@nxp.com>
Signed-off-by: Fugang Duan <fugang.duan@nxp.com>
  • Loading branch information
fugangduan committed Aug 11, 2020
1 parent 2c9b4da commit b2d3726eea4f606e61fa5c48dd875605f7299080
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
@@ -957,7 +957,7 @@ static t_u16 wlan_get_cmd_timeout(t_u16 cmd_id)
timeout = MRVDRV_TIMER_5S;
break;
default:
timeout = MRVDRV_TIMER_1S * 2;
timeout = MRVDRV_TIMER_1S * 10;
break;
}
LEAVE();
@@ -24,7 +24,7 @@
#define _MLAN_DECL_H_

/** MLAN release version */
#define MLAN_RELEASE_VERSION "186"
#define MLAN_RELEASE_VERSION "186.p2"

/** Re-define generic data types for MLAN/MOAL */
/** Signed char (1-byte) */
@@ -556,6 +556,8 @@ typedef enum {

#define MREG_D MBIT(9)

#define MLOG_D MBIT(10)

#define MMPA_D MBIT(15)
#define MDAT_D MBIT(16)
#define MCMD_D MBIT(17)
@@ -1681,7 +1681,7 @@ typedef enum _ENH_PS_MODES {

/** Buffer Constants */
/** Number of command buffers */
#define MRVDRV_NUM_OF_CMD_BUFFER 30
#define MRVDRV_NUM_OF_CMD_BUFFER 40
/** Maximum number of BSS Descriptors */
#define MRVDRV_MAX_BSSID_LIST 200

@@ -1108,7 +1108,7 @@ mlan_status wlan_cmd_802_11_associate(mlan_private *pmpriv,

wlan_cmd_append_generic_ie(pmpriv, &pos);

if (ft_akm && pbss_desc->pmd_ie)
if (pbss_desc->pmd_ie)
wlan_cmd_append_pass_through_ie(
pmpriv, (IEEEtypes_Generic_t *)pbss_desc->pmd_ie, &pos);
wlan_cmd_append_tsf_tlv(pmpriv, &pos, pbss_desc);

0 comments on commit b2d3726

Please sign in to comment.