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

Commit 9f645421 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: simple-scu-card: code sync: tidyup TDM setting position



simple sound card family are using very similar style, but because of its
historical reason, there are small differences. For example pointer style,
function name, caller postion etc...
This patch tidyup TDM setting position

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent f4d70709
Loading
Loading
Loading
Loading
+8 −9
Original line number Diff line number Diff line
@@ -111,15 +111,6 @@ static int asoc_simple_card_parse_links(struct device_node *np,
	struct asoc_simple_dai *dai_props = simple_priv_to_props(priv, idx);
	int ret;

	/* Parse TDM slot */
	ret = snd_soc_of_parse_tdm_slot(np,
					&dai_props->tx_slot_mask,
					&dai_props->rx_slot_mask,
					&dai_props->slots,
					&dai_props->slot_width);
	if (ret)
		return ret;

	if (is_fe) {
		int is_single_links = 0;

@@ -178,6 +169,14 @@ static int asoc_simple_card_parse_links(struct device_node *np,
					      PREFIX "prefix");
	}

	ret = snd_soc_of_parse_tdm_slot(np,
					&dai_props->tx_slot_mask,
					&dai_props->rx_slot_mask,
					&dai_props->slots,
					&dai_props->slot_width);
	if (ret)
		return ret;

	ret = asoc_simple_card_canonicalize_dailink(dai_link);
	if (ret < 0)
		return ret;