diff options
author | CK Hu <ck.hu@mediatek.com> | 2019-05-10 10:47:15 +0200 |
---|---|---|
committer | Chun-Kuang Hu <chunkuang.hu@kernel.org> | 2020-09-06 01:02:54 +0200 |
commit | a481bf2f0ca43c6476229d5bc4c3f6b9404de863 (patch) | |
tree | 28fd80bf59861f0f5c53dddddc0b1af4fd5b691a /drivers/gpu/drm/mediatek/mtk_hdmi.c | |
parent | drm/mediatek: Move tz_disabled from mtk_hdmi_phy to mtk_hdmi driver (diff) | |
download | linux-a481bf2f0ca43c6476229d5bc4c3f6b9404de863.tar.xz linux-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.c | 2 |
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, |