Home | History | Annotate | Download | only in hid

Lines Matching refs:p_cfg

55 static void hidh_l2cif_config_ind (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg);
56 static void hidh_l2cif_config_cfm (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg);
456 static void hidh_l2cif_config_ind (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg)
479 if ((!p_cfg->mtu_present) || (p_cfg->mtu > HID_HOST_MTU))
482 p_hcon->rem_mtu_size = p_cfg->mtu;
485 p_cfg->flush_to_present = FALSE;
486 p_cfg->mtu_present = FALSE;
487 p_cfg->result = L2CAP_CFG_OK;
489 L2CA_ConfigRsp (l2cap_cid, p_cfg);
542 static void hidh_l2cif_config_cfm (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg)
548 HIDH_TRACE_EVENT ("HID-Host Rcvd cfg cfm, CID: 0x%x Result: %d", l2cap_cid, p_cfg->result);
561 if (p_cfg->result != L2CAP_CFG_OK)
564 reason = HID_L2CAP_CFG_FAIL | (UINT32) p_cfg->result ;