summaryrefslogtreecommitdiff
path: root/drivers/phy
diff options
context:
space:
mode:
authorRobert Chiras <robert.chiras@nxp.com>2017-11-09 11:33:31 +0200
committerLeonard Crestez <leonard.crestez@nxp.com>2018-08-24 12:41:33 +0300
commit8fc82197884ba0dd9c691b3dd61756771810e486 (patch)
treeeb0dd97b0c610e93b73ce2f3b787b054e9c10bb4 /drivers/phy
parent4a2542b01fe48010599f72cd145d052a9c89aaac (diff)
MLK-16918-6: phy: update Mixel mipi-dsi phy driver for MX8MQ
Added compatible string for i.MX8MQ platform. Signed-off-by: Robert Chiras <robert.chiras@nxp.com>
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/phy-mixel-mipi-dsi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/phy/phy-mixel-mipi-dsi.c b/drivers/phy/phy-mixel-mipi-dsi.c
index 934456ed7d6f..cd7192da076b 100644
--- a/drivers/phy/phy-mixel-mipi-dsi.c
+++ b/drivers/phy/phy-mixel-mipi-dsi.c
@@ -345,10 +345,12 @@ static const struct phy_ops mixel_mipi_phy_ops = {
static struct devtype imx8qm_dev = { .have_sc = true };
static struct devtype imx8qxp_dev = { .have_sc = true };
+static struct devtype imx8mq_dev = { .have_sc = false };
static const struct of_device_id mixel_mipi_phy_of_match[] = {
{ .compatible = "mixel,imx8qm-mipi-dsi-phy", .data = &imx8qm_dev },
{ .compatible = "mixel,imx8qxp-mipi-dsi-phy", .data = &imx8qxp_dev },
+ { .compatible = "mixel,imx8mq-mipi-dsi-phy", .data = &imx8mq_dev },
{}
};
MODULE_DEVICE_TABLE(of, mixel_mipi_phy_of_match);