diff options
author | chunhui dai <chunhui.dai@mediatek.com> | 2018-10-03 06:41:49 +0300 |
---|---|---|
committer | CK Hu <ck.hu@mediatek.com> | 2018-10-03 06:56:33 +0300 |
commit | 0fc721b2968e3cadec520c60d2fc63498d865055 (patch) | |
tree | 842e42206c423311503bfa74d887b2c1ca492285 /drivers/gpu/drm/mediatek/mtk_hdmi_phy.c | |
parent | d1ef028d95ffd0f114f2d42ef4f141664abbf1f6 (diff) | |
download | linux-0fc721b2968e3cadec520c60d2fc63498d865055.tar.xz |
drm/mediatek: add hdmi driver for MT2701 and MT7623
This patch adds hdmi dirver suppot for both MT2701 and MT7623.
And also support other (existing or future) chips that use
the same binding and driver.
Signed-off-by: chunhui dai <chunhui.dai@mediatek.com>
Signed-off-by: CK Hu <ck.hu@mediatek.com>
Diffstat (limited to 'drivers/gpu/drm/mediatek/mtk_hdmi_phy.c')
-rw-r--r-- | drivers/gpu/drm/mediatek/mtk_hdmi_phy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi_phy.c b/drivers/gpu/drm/mediatek/mtk_hdmi_phy.c index 514f3e9a8767..4ef9c57ffd44 100644 --- a/drivers/gpu/drm/mediatek/mtk_hdmi_phy.c +++ b/drivers/gpu/drm/mediatek/mtk_hdmi_phy.c @@ -214,6 +214,9 @@ static int mtk_hdmi_phy_probe(struct platform_device *pdev) } static const struct of_device_id mtk_hdmi_phy_match[] = { + { .compatible = "mediatek,mt2701-hdmi-phy", + .data = &mtk_hdmi_phy_2701_conf, + }, { .compatible = "mediatek,mt8173-hdmi-phy", .data = &mtk_hdmi_phy_8173_conf, }, |