ASoC: loongson: fix error codes in loongson_card_parse_acpi()
authorDan Carpenter <dan.carpenter@linaro.org>
Mon, 19 Jun 2023 09:46:21 +0000 (12:46 +0300)
committerMark Brown <broonie@kernel.org>
Mon, 19 Jun 2023 11:59:28 +0000 (12:59 +0100)
commit8fba13f02c85b90deeba65a398f55d4b43a79595
tree75220a644ba206a5349ab422c1b7f7a09e5bbc48
parent2f76e1d6ca524a888d29aafe29f2ad2003857971
ASoC: loongson: fix error codes in loongson_card_parse_acpi()

The acpi_node_get_property_reference() function returns kernel error
codes and not ACPI error codes.  So, although it does not affect the
compiled code, using the ACPI_FAILURE() macro is wrong.  Secondly,
if the is_acpi_device_node() function returns false, then we should
return -ENOENT instead of returning success.

Fixes: d24028606e76 ("ASoC: loongson: Add Loongson ASoC Sound Card Support")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/fb14815d-2f9a-4b42-b193-cec61e7417ca@moroto.mountain
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/loongson/loongson_card.c