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

This commit is contained in:
qctecmdr
2019-09-21 22:09:40 -07:00
committed by Gerrit - the friendly Code Review server

View File

@@ -1744,14 +1744,19 @@ static int tx_macro_register_event_listener(struct snd_soc_component *component,
return -EINVAL; return -EINVAL;
} }
if (tx_priv->swr_ctrl_data) { if (tx_priv->swr_ctrl_data) {
if (enable) if (enable) {
ret = swrm_wcd_notify( ret = swrm_wcd_notify(
tx_priv->swr_ctrl_data[0].tx_swr_pdev, tx_priv->swr_ctrl_data[0].tx_swr_pdev,
SWR_REGISTER_WAKEUP, NULL); 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( ret = swrm_wcd_notify(
tx_priv->swr_ctrl_data[0].tx_swr_pdev, tx_priv->swr_ctrl_data[0].tx_swr_pdev,
SWR_DEREGISTER_WAKEUP, NULL); SWR_DEREGISTER_WAKEUP, NULL);
}
} }
return ret; return ret;