diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2014-10-21 17:01:15 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-10-21 22:24:31 +0100 |
commit | 98ad73c995ed4886c36a1fcfcda53fbff484f666 (patch) | |
tree | ecea6dbc9ceb4e1ca9bc512be0afa5efd6292039 /sound/soc/soc-dapm.c | |
parent | f114040e3ea6e07372334ade75d1ee0775c355e1 (diff) | |
download | blackbird-op-linux-98ad73c995ed4886c36a1fcfcda53fbff484f666.tar.gz blackbird-op-linux-98ad73c995ed4886c36a1fcfcda53fbff484f666.zip |
ASoC: dapm: Remove redundant cast
Both path->name and e->texts[i] have type const char*, so the cast is
slightly confusing and certainly unnecessary.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r-- | sound/soc/soc-dapm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index c61cb9cedbcd..39f992bc2b6a 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -496,7 +496,7 @@ static int dapm_connect_mux(struct snd_soc_dapm_context *dapm, list_add(&path->list, &dapm->card->paths); list_add(&path->list_sink, &dest->sources); list_add(&path->list_source, &src->sinks); - path->name = (char*)e->texts[i]; + path->name = e->texts[i]; if (i == item) path->connect = 1; else |