summaryrefslogtreecommitdiff
path: root/sound/soc/fsl/fsl_dsp.c
diff options
context:
space:
mode:
authorDaniel Baluta <daniel.baluta@nxp.com>2019-08-20 14:10:35 +0300
committerDong Aisheng <aisheng.dong@nxp.com>2019-11-25 15:52:20 +0800
commit940d9baeca0f6d7782f8dc59e0b6f0db85fa2325 (patch)
treea7c0576aa6cd88fbb9cc1e0541b40a87de7e63b1 /sound/soc/fsl/fsl_dsp.c
parent129c45f83791363d7cbef10a15d3d3fb020588f7 (diff)
ASoC: fsl_dsp: Use new compatible string for FSL DSP
In order to support in parallel FSL DSP and SOF Linux drivers we will need to use different compatible strings for DSP nodes. Use fsl,imx8qxp-dsp-v1 for FSL DSP driver. Note that our goal is to only support SOF Linux driver, so FSL DSP driver will be deprecated. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Diffstat (limited to 'sound/soc/fsl/fsl_dsp.c')
-rw-r--r--sound/soc/fsl/fsl_dsp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/fsl/fsl_dsp.c b/sound/soc/fsl/fsl_dsp.c
index c99e9bba07cf..2c7976ffdb09 100644
--- a/sound/soc/fsl/fsl_dsp.c
+++ b/sound/soc/fsl/fsl_dsp.c
@@ -790,7 +790,7 @@ static int fsl_dsp_probe(struct platform_device *pdev)
if (!dsp_priv)
return -ENOMEM;
- if (of_device_is_compatible(np, "fsl,imx8qxp-dsp"))
+ if (of_device_is_compatible(np, "fsl,imx8qxp-dsp-v1"))
dsp_priv->dsp_board_type = DSP_IMX8QXP_TYPE;
else
dsp_priv->dsp_board_type = DSP_IMX8QM_TYPE;
@@ -1150,8 +1150,8 @@ static const struct dev_pm_ops fsl_dsp_pm = {
};
static const struct of_device_id fsl_dsp_ids[] = {
- { .compatible = "fsl,imx8qxp-dsp", },
- { .compatible = "fsl,imx8qm-dsp", },
+ { .compatible = "fsl,imx8qxp-dsp-v1", },
+ { .compatible = "fsl,imx8qm-dsp-v1", },
{}
};
MODULE_DEVICE_TABLE(of, fsl_dsp_ids);