diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2018-11-21 02:11:13 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-11-21 13:28:49 +0000 |
commit | 33404f3f10beaf0d69d8765f5804b6fb3b305f0f (patch) | |
tree | 2ff2e4cd1dce3e7b6fb125e9a9f89703a8615edd /sound/soc/generic/audio-graph-card.c | |
parent | a48bf02b35d9325eedb56ab531038511695a2734 (diff) | |
download | linux-33404f3f10beaf0d69d8765f5804b6fb3b305f0f.tar.bz2 |
ASoC: simple_card_utils: remove "option" from asoc_simple_card_of_parse_routing()
asoc_simple_card_of_parse_routing() had "option" parameter
to consider error handling, but it is very pointless parameter.
Let's remove it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/generic/audio-graph-card.c')
-rw-r--r-- | sound/soc/generic/audio-graph-card.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/generic/audio-graph-card.c b/sound/soc/generic/audio-graph-card.c index 26eb6ff9b9f3..101c7da2df7c 100644 --- a/sound/soc/generic/audio-graph-card.c +++ b/sound/soc/generic/audio-graph-card.c @@ -238,7 +238,7 @@ static int asoc_graph_card_parse_of(struct graph_card_data *priv) if (ret < 0) return ret; - ret = asoc_simple_card_of_parse_routing(card, NULL, 1); + ret = asoc_simple_card_of_parse_routing(card, NULL); if (ret < 0) return ret; |