diff options
author | Markus Pargmann <mpa@pengutronix.de> | 2013-08-10 14:55:57 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-11 11:59:27 +0100 |
commit | 9c0aeaa3849150acaaf016202c6741d542b3c1df (patch) | |
tree | 7b9adbd2576dee61126264960bdec1f0f8b21e8e /sound/soc/fsl/imx-audmux.c | |
parent | 9f19de649f70c3bd32da09fc08643d4fca1d06fe (diff) | |
download | blackbird-op-linux-9c0aeaa3849150acaaf016202c6741d542b3c1df.tar.gz blackbird-op-linux-9c0aeaa3849150acaaf016202c6741d542b3c1df.zip |
ASoC: imx-audmux: default configuration parser fixups
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/fsl/imx-audmux.c')
-rw-r--r-- | sound/soc/fsl/imx-audmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/fsl/imx-audmux.c b/sound/soc/fsl/imx-audmux.c index 103d1b020496..ab17381cc981 100644 --- a/sound/soc/fsl/imx-audmux.c +++ b/sound/soc/fsl/imx-audmux.c @@ -278,7 +278,7 @@ static int imx_audmux_parse_dt_defaults(struct platform_device *pdev, } for (i = 0; (ret = of_property_read_u32_index(child, - "fsl,port-config\n", i, &val)) == 0; + "fsl,port-config", i, &val)) == 0; ++i) { if (audmux_type == IMX31_AUDMUX) { if (i % 2) @@ -290,7 +290,7 @@ static int imx_audmux_parse_dt_defaults(struct platform_device *pdev, } } - if (ret != -ENODATA) { + if (ret != -EOVERFLOW) { dev_err(&pdev->dev, "Failed to read u32 at index %d of child %s\n", i, child->full_name); continue; |