Skip to content
Snippets Groups Projects
Commit 19359926 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: simple-scu-card: code sync: tidyup props/link naming


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 synchronizes style to other simple card family so that be enable
to easy reviewing.

This patch uses dai_link/dai_props instead of links/props.

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6910e867
No related branches found
No related tags found
No related merge requests found
...@@ -254,8 +254,8 @@ static int asoc_simple_card_parse_of(struct device_node *node, ...@@ -254,8 +254,8 @@ static int asoc_simple_card_parse_of(struct device_node *node,
static int asoc_simple_card_probe(struct platform_device *pdev) static int asoc_simple_card_probe(struct platform_device *pdev)
{ {
struct simple_card_data *priv; struct simple_card_data *priv;
struct snd_soc_dai_link *links; struct snd_soc_dai_link *dai_link;
struct asoc_simple_dai *props; struct asoc_simple_dai *dai_props;
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
int num, ret; int num, ret;
...@@ -267,13 +267,13 @@ static int asoc_simple_card_probe(struct platform_device *pdev) ...@@ -267,13 +267,13 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
num = of_get_child_count(np); num = of_get_child_count(np);
props = devm_kzalloc(dev, sizeof(*props) * num, GFP_KERNEL); dai_props = devm_kzalloc(dev, sizeof(*dai_props) * num, GFP_KERNEL);
links = devm_kzalloc(dev, sizeof(*links) * num, GFP_KERNEL); dai_link = devm_kzalloc(dev, sizeof(*dai_link) * num, GFP_KERNEL);
if (!props || !links) if (!dai_props || !dai_link)
return -ENOMEM; return -ENOMEM;
priv->dai_props = props; priv->dai_props = dai_props;
priv->dai_link = links; priv->dai_link = dai_link;
/* Init snd_soc_card */ /* Init snd_soc_card */
priv->snd_card.owner = THIS_MODULE; priv->snd_card.owner = THIS_MODULE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment