]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: simple-card-utils: share same dev_dbg() for Dai Name
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Mon, 5 Jun 2017 04:28:29 +0000 (04:28 +0000)
committerMark Brown <broonie@kernel.org>
Tue, 6 Jun 2017 18:46:08 +0000 (19:46 +0100)
Let's share same debug message for DAI Name

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/generic/audio-graph-card.c
sound/soc/generic/simple-card-utils.c
sound/soc/generic/simple-card.c

index 1769a39a22c451a1b041408134f1d3516536e469..2c3a1cc014428a05aaf6f76cbca8c92134c8824c 100644 (file)
@@ -169,7 +169,6 @@ static int asoc_graph_card_dai_link_of(struct device_node *cpu_port,
        dai_link->ops = &asoc_graph_card_ops;
        dai_link->init = asoc_graph_card_dai_init;
 
-       dev_dbg(dev, "\tname : %s\n", dai_link->stream_name);
        dev_dbg(dev, "\tcpu : %s / %d\n",
                dai_link->cpu_dai_name,
                cpu_dai->sysclk);
index 59e770125596b0bd970c3de88d1d528316602303..1f08064f65b18345fcea7f44e8526062506e0ca9 100644 (file)
@@ -74,6 +74,8 @@ int asoc_simple_card_set_dailink_name(struct device *dev,
 
                dai_link->name          = name;
                dai_link->stream_name   = name;
+
+               dev_dbg(dev, "name : %s\n", name);
        }
 
        return ret;
index d364f08a7182c41c1d45c43df6bd6a7f3a6c740a..1da0e2b068c3b9d12265fdb3755961d0e225d5e7 100644 (file)
@@ -301,7 +301,6 @@ static int asoc_simple_card_dai_link_of(struct device_node *node,
        dai_link->ops = &asoc_simple_card_ops;
        dai_link->init = asoc_simple_card_dai_init;
 
-       dev_dbg(dev, "\tname : %s\n", dai_link->stream_name);
        dev_dbg(dev, "\tcpu : %s / %d\n",
                dai_link->cpu_dai_name,
                dai_props->cpu_dai.sysclk);