1
0
Fork 0

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>
pull/10/head
Robert Chiras 2017-11-09 11:33:31 +02:00 committed by Jason Liu
parent f8f8ce47c3
commit f7f9cd98b0
1 changed files with 2 additions and 0 deletions

View File

@ -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);