|
@@ -797,7 +797,8 @@ static int fsl_sai_probe(struct platform_device *pdev)
|
|
|
|
|
|
sai->pdev = pdev;
|
|
|
|
|
|
- if (of_device_is_compatible(pdev->dev.of_node, "fsl,imx6sx-sai"))
|
|
|
+ if (of_device_is_compatible(pdev->dev.of_node, "fsl,imx6sx-sai") ||
|
|
|
+ of_device_is_compatible(pdev->dev.of_node, "fsl,imx6ul-sai"))
|
|
|
sai->sai_on_imx = true;
|
|
|
|
|
|
sai->is_lsb_first = of_property_read_bool(np, "lsb-first");
|
|
@@ -898,6 +899,7 @@ static int fsl_sai_probe(struct platform_device *pdev)
|
|
|
static const struct of_device_id fsl_sai_ids[] = {
|
|
|
{ .compatible = "fsl,vf610-sai", },
|
|
|
{ .compatible = "fsl,imx6sx-sai", },
|
|
|
+ { .compatible = "fsl,imx6ul-sai", },
|
|
|
{ /* sentinel */ }
|
|
|
};
|
|
|
MODULE_DEVICE_TABLE(of, fsl_sai_ids);
|