return 0;
 }
 
-static int mtk_drm_hdmi_probe(struct platform_device *pdev)
+static int mtk_hdmi_probe(struct platform_device *pdev)
 {
        struct mtk_hdmi *hdmi;
        struct device *dev = &pdev->dev;
        return ret;
 }
 
-static void mtk_drm_hdmi_remove(struct platform_device *pdev)
+static void mtk_hdmi_remove(struct platform_device *pdev)
 {
        struct mtk_hdmi *hdmi = platform_get_drvdata(pdev);
 
        .cea_modes_only = true,
 };
 
-static const struct of_device_id mtk_drm_hdmi_of_ids[] = {
+static const struct of_device_id mtk_hdmi_of_ids[] = {
        { .compatible = "mediatek,mt2701-hdmi",
          .data = &mtk_hdmi_conf_mt2701,
        },
        },
        {}
 };
-MODULE_DEVICE_TABLE(of, mtk_drm_hdmi_of_ids);
+MODULE_DEVICE_TABLE(of, mtk_hdmi_of_ids);
 
 static struct platform_driver mtk_hdmi_driver = {
-       .probe = mtk_drm_hdmi_probe,
-       .remove_new = mtk_drm_hdmi_remove,
+       .probe = mtk_hdmi_probe,
+       .remove_new = mtk_hdmi_remove,
        .driver = {
                .name = "mediatek-drm-hdmi",
-               .of_match_table = mtk_drm_hdmi_of_ids,
+               .of_match_table = mtk_hdmi_of_ids,
                .pm = &mtk_hdmi_pm_ops,
        },
 };