qcacmn: Fix transaction id descrepancy during NDI create
Driver truncated the transaction id to 8-bits from 16-bit value causing the descrepancy in transaction id exchange during NDI create. Change-Id: I502f422620411c39bd0e75f06e9b7200bfea24ae CRs-Fixed: 2072511
This commit is contained in:
@@ -1247,7 +1247,7 @@ static void os_if_ndp_iface_create_rsp_handler(struct wlan_objmgr_psoc *psoc,
|
|||||||
bool create_fail = false;
|
bool create_fail = false;
|
||||||
struct nan_callbacks cb_obj;
|
struct nan_callbacks cb_obj;
|
||||||
struct sk_buff *vendor_event;
|
struct sk_buff *vendor_event;
|
||||||
uint8_t create_transaction_id;
|
uint16_t create_transaction_id;
|
||||||
struct wlan_objmgr_pdev *pdev = wlan_vdev_get_pdev(vdev);
|
struct wlan_objmgr_pdev *pdev = wlan_vdev_get_pdev(vdev);
|
||||||
struct pdev_osif_priv *os_priv = wlan_pdev_get_ospriv(pdev);
|
struct pdev_osif_priv *os_priv = wlan_pdev_get_ospriv(pdev);
|
||||||
uint32_t create_status = NAN_DATAPATH_RSP_STATUS_ERROR;
|
uint32_t create_status = NAN_DATAPATH_RSP_STATUS_ERROR;
|
||||||
|
Reference in New Issue
Block a user