summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baluta <daniel.baluta@nxp.com>2017-06-15 18:48:22 +0300
committerDaniel Baluta <daniel.baluta@nxp.com>2017-06-20 10:39:24 +0300
commit7c280619ed45ba6a0d4ef3710c2a0c0faf5dd53d (patch)
treedadca6d55b32787ef3ea0c01a74f41446bb8aa5d
parentc79a82aec8ccf11fd9eae7776b8172bb20f1e595 (diff)
MLK-14663-2: ASoC: fsl: imx-wm8960: Kill warning for non-gpr boards
A side effect of commit 5555277e693a7 ("MLK-13574-1: ASoC: imx-wm8960: remove the gpr dependency") is that a warning was printed for boards without gpr. This can be confusing. imx7d boards do not have a gpr setting, so use imx7d-evk-wm8960 compatible string to avoid printing the warning. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
-rw-r--r--sound/soc/fsl/imx-wm8960.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/fsl/imx-wm8960.c b/sound/soc/fsl/imx-wm8960.c
index 58f0bedcd429..8dbf997d3d8c 100644
--- a/sound/soc/fsl/imx-wm8960.c
+++ b/sound/soc/fsl/imx-wm8960.c
@@ -427,6 +427,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-evk-wm8960"))
+ return 0;
+
ret = of_parse_phandle_with_fixed_args(pdev->dev.of_node,
"gpr", 3, 0, &args);
if (ret) {
@@ -649,6 +653,7 @@ static int imx_wm8960_remove(struct platform_device *pdev)
static const struct of_device_id imx_wm8960_dt_ids[] = {
{ .compatible = "fsl,imx-audio-wm8960", },
+ { .compatible = "fsl,imx7d-evk-wm8960" },
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, imx_wm8960_dt_ids);