summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baluta <daniel.baluta@nxp.com>2017-06-20 16:33:55 +0300
committerDaniel Baluta <daniel.baluta@nxp.com>2017-06-21 11:49:44 +0300
commitab761d65acf4cbf4f212b99fdf1fc57fe24564dc (patch)
tree25303dae2746145d7228752953adaefa1967196f
parentbe3df8a8e94e77acb00e84bd6d7747373c54d1f5 (diff)
MLK-15067: ASoC: fsl: imx-wm8958: Kill warning for non-gpr boards
Similar with 7c280619ed45b (" MLK-14663-2: ASoC: fsl: imx-wm8960: Kill warning for non-gpr boards") Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
-rw-r--r--sound/soc/fsl/imx-wm8958.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/fsl/imx-wm8958.c b/sound/soc/fsl/imx-wm8958.c
index 63c83afb5f48..09b8187f94af 100644
--- a/sound/soc/fsl/imx-wm8958.c
+++ b/sound/soc/fsl/imx-wm8958.c
@@ -407,6 +407,10 @@ static int of_parse_gpr(struct platform_device *pdev,
int ret;
struct of_phandle_args args;
+ if (of_device_is_compatible(pdev->dev.of_node,
+ "fsl,imx7d-12x12-lpddr3-arm2-wm8958"))
+ return 0;
+
ret = of_parse_phandle_with_fixed_args(pdev->dev.of_node,
"gpr", 3, 0, &args);
if (ret) {
@@ -561,6 +565,7 @@ static int imx_wm8958_remove(struct platform_device *pdev)
static const struct of_device_id imx_wm8958_dt_ids[] = {
{ .compatible = "fsl,imx-audio-wm8958", },
+ { .compatible = "fsl,imx7d-12x12-lpddr3-arm2-wm8958", },
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, imx_wm8958_dt_ids);