ASoC: rsnd: unify rdai naming
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tue, 25 Feb 2014 06:15:18 +0000 (22:15 -0800)
committerStephane Desneux <stephane.desneux@open.eurogiciel.org>
Wed, 4 Feb 2015 10:13:05 +0000 (11:13 +0100)
struct rsnd_dai is called as "rdai",
but its size has been called as "dai_nr".
Unify these as "rdai"

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
(cherry picked from commit ecba9e724c5775aebd3a28e831643160c7146e83)
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
sound/soc/sh/rcar/core.c
sound/soc/sh/rcar/rsnd.h

index cb93ce8..89c3f98 100644 (file)
@@ -352,7 +352,7 @@ int rsnd_dai_id(struct rsnd_priv *priv, struct rsnd_dai *rdai)
 {
        int id = rdai - priv->rdai;
 
-       if ((id < 0) || (id >= rsnd_dai_nr(priv)))
+       if ((id < 0) || (id >= rsnd_rdai_nr(priv)))
                return -EINVAL;
 
        return id;
@@ -360,7 +360,7 @@ int rsnd_dai_id(struct rsnd_priv *priv, struct rsnd_dai *rdai)
 
 struct rsnd_dai *rsnd_dai_get(struct rsnd_priv *priv, int id)
 {
-       if ((id < 0) || (id >= rsnd_dai_nr(priv)))
+       if ((id < 0) || (id >= rsnd_rdai_nr(priv)))
                return NULL;
 
        return priv->rdai + id;
@@ -607,7 +607,7 @@ static int rsnd_dai_probe(struct platform_device *pdev,
                return -ENOMEM;
        }
 
-       priv->dai_nr    = dai_nr;
+       priv->rdai_nr   = dai_nr;
        priv->daidrv    = drv;
        priv->rdai      = rdai;
 
@@ -801,7 +801,7 @@ static int rsnd_probe(struct platform_device *pdev)
        }
 
        ret = snd_soc_register_component(dev, &rsnd_soc_component,
-                                        priv->daidrv, rsnd_dai_nr(priv));
+                                        priv->daidrv, rsnd_rdai_nr(priv));
        if (ret < 0) {
                dev_err(dev, "cannot snd dai register\n");
                goto exit_snd_soc;
index 8ac28ac..3962a50 100644 (file)
@@ -202,10 +202,10 @@ struct rsnd_dai {
        unsigned int data_alignment:1;
 };
 
-#define rsnd_dai_nr(priv) ((priv)->dai_nr)
+#define rsnd_rdai_nr(priv) ((priv)->rdai_nr)
 #define for_each_rsnd_dai(rdai, priv, i)               \
        for (i = 0;                                     \
-            (i < rsnd_dai_nr(priv)) &&                 \
+            (i < rsnd_rdai_nr(priv)) &&                \
             ((rdai) = rsnd_dai_get(priv, i));          \
             i++)
 
@@ -299,7 +299,7 @@ struct rsnd_priv {
         */
        struct snd_soc_dai_driver *daidrv;
        struct rsnd_dai *rdai;
-       int dai_nr;
+       int rdai_nr;
 };
 
 #define rsnd_priv_to_dev(priv) ((priv)->dev)