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

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

Merge "ASoC: tx-macro: Disable wakeup source for soundwire tx data gpio"

parents 7c8393fd bc3f1e5a
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -1744,15 +1744,20 @@ static int tx_macro_register_event_listener(struct snd_soc_component *component,
		return -EINVAL;
	}
	if (tx_priv->swr_ctrl_data) {
		if (enable)
		if (enable) {
			ret = swrm_wcd_notify(
				tx_priv->swr_ctrl_data[0].tx_swr_pdev,
				SWR_REGISTER_WAKEUP, NULL);
		else
			msm_cdc_pinctrl_set_wakeup_capable(
					tx_priv->tx_swr_gpio_p, false);
		} else {
			msm_cdc_pinctrl_set_wakeup_capable(
					tx_priv->tx_swr_gpio_p, true);
			ret = swrm_wcd_notify(
				tx_priv->swr_ctrl_data[0].tx_swr_pdev,
				SWR_DEREGISTER_WAKEUP, NULL);
		}
	}

	return ret;
}