diff options
author | Srinivasa Rao Mandadapu <srivasam@codeaurora.org> | 2021-03-11 18:45:57 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-03-11 19:21:11 +0300 |
commit | 9922f50f7178496e709d3d064920b5031f0d9061 (patch) | |
tree | c8d86e9a4739b61ca04292091fce8f8f73ab5fc1 /sound | |
parent | ea94191e584b146878f0b7fd4b767500d7aae870 (diff) | |
download | linux-9922f50f7178496e709d3d064920b5031f0d9061.tar.xz |
ASoC: qcom: lpass-cpu: Fix lpass dai ids parse
The max boundary check while parsing dai ids makes
sound card registration fail after common up dai ids.
Fixes: cd3484f7f138 ("ASoC: qcom: Fix broken support to MI2S TERTIARY and QUATERNARY")
Signed-off-by: Srinivasa Rao Mandadapu <srivasam@codeaurora.org>
Link: https://lore.kernel.org/r/20210311154557.24978-1-srivasam@codeaurora.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/qcom/lpass-cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/qcom/lpass-cpu.c b/sound/soc/qcom/lpass-cpu.c index c642e5f8f28c..be360a402b67 100644 --- a/sound/soc/qcom/lpass-cpu.c +++ b/sound/soc/qcom/lpass-cpu.c @@ -739,7 +739,7 @@ static void of_lpass_cpu_parse_dai_data(struct device *dev, for_each_child_of_node(dev->of_node, node) { ret = of_property_read_u32(node, "reg", &id); - if (ret || id < 0 || id >= data->variant->num_dai) { + if (ret || id < 0) { dev_err(dev, "valid dai id not found: %d\n", ret); continue; } |