From 940d9baeca0f6d7782f8dc59e0b6f0db85fa2325 Mon Sep 17 00:00:00 2001 From: Daniel Baluta Date: Tue, 20 Aug 2019 14:10:35 +0300 Subject: 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 --- sound/soc/fsl/fsl_dsp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sound/soc/fsl/fsl_dsp.c') 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); -- cgit v1.2.3