Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 214b829c authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "cnss2: Check for FW / IMS status for WFC QMI messages"

parents 5395c509 604d4a0b
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -1575,6 +1575,10 @@ static int cnss_wlfw_wfc_call_status_send_sync
	struct qmi_txn txn;
	int ret = 0;

	if (!test_bit(CNSS_FW_READY, &plat_priv->driver_state)) {
		cnss_pr_err("Drop IMS WFC indication as FW not initialized\n");
		return -EINVAL;
	}
	req = kzalloc(sizeof(*req), GFP_KERNEL);
	if (!req)
		return -ENOMEM;
@@ -2095,6 +2099,11 @@ static int cnss_ims_wfc_call_twt_cfg_send_sync
	struct qmi_txn txn;
	int ret = 0;

	if (!test_bit(CNSS_IMS_CONNECTED, &plat_priv->driver_state)) {
		cnss_pr_err("Drop FW WFC indication as IMS QMI not connected\n");
		return -EINVAL;
	}

	req = kzalloc(sizeof(*req), GFP_KERNEL);
	if (!req)
		return -ENOMEM;