summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/mediatek/mtk_hdmi.c
diff options
context:
space:
mode:
authorCK Hu <ck.hu@mediatek.com>2019-05-10 16:47:15 +0800
committerChun-Kuang Hu <chunkuang.hu@kernel.org>2020-09-06 07:02:54 +0800
commita481bf2f0ca43c6476229d5bc4c3f6b9404de863 (patch)
tree28fd80bf59861f0f5c53dddddc0b1af4fd5b691a /drivers/gpu/drm/mediatek/mtk_hdmi.c
parent96f51a4d43508e7d916caac02e382123d299c0d7 (diff)
downloadlinux-stable-a481bf2f0ca43c6476229d5bc4c3f6b9404de863.tar.gz
linux-stable-a481bf2f0ca43c6476229d5bc4c3f6b9404de863.tar.bz2
linux-stable-a481bf2f0ca43c6476229d5bc4c3f6b9404de863.zip
drm/mediatek: Separate mtk_hdmi_phy to an independent module
mtk_hdmi_phy is a part of mtk_hdmi module, but phy driver should be an independent module rather than be part of drm module, so separate the phy driver to an independent module. Signed-off-by: CK Hu <ck.hu@mediatek.com> Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org> Tested-by: Frank Wunderlich <frank-w@public-files.de>
Diffstat (limited to 'drivers/gpu/drm/mediatek/mtk_hdmi.c')
-rw-r--r--drivers/gpu/drm/mediatek/mtk_hdmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi.c b/drivers/gpu/drm/mediatek/mtk_hdmi.c
index d44348c7ecbe..0ed7b0b1a022 100644
--- a/drivers/gpu/drm/mediatek/mtk_hdmi.c
+++ b/drivers/gpu/drm/mediatek/mtk_hdmi.c
@@ -12,6 +12,7 @@
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/mfd/syscon.h>
+#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/of_platform.h>
#include <linux/of.h>
@@ -1832,7 +1833,6 @@ static struct platform_driver mtk_hdmi_driver = {
};
static struct platform_driver * const mtk_hdmi_drivers[] = {
- &mtk_hdmi_phy_driver,
&mtk_hdmi_ddc_driver,
&mtk_cec_driver,
&mtk_hdmi_driver,