drm/mediatek: mtk_hdmi: Remove debug messages for function calls
Equivalent information can be nowadays obtained using function tracer Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
This commit is contained in:

committed by
Chun-Kuang Hu

parent
3a7826cc24
commit
5ab546f5e6
@@ -1630,8 +1630,6 @@ static int mtk_hdmi_audio_startup(struct device *dev, void *data)
|
||||
{
|
||||
struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
|
||||
|
||||
dev_dbg(dev, "%s\n", __func__);
|
||||
|
||||
mtk_hdmi_audio_enable(hdmi);
|
||||
|
||||
return 0;
|
||||
@@ -1641,8 +1639,6 @@ static void mtk_hdmi_audio_shutdown(struct device *dev, void *data)
|
||||
{
|
||||
struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
|
||||
|
||||
dev_dbg(dev, "%s\n", __func__);
|
||||
|
||||
mtk_hdmi_audio_disable(hdmi);
|
||||
}
|
||||
|
||||
@@ -1651,8 +1647,6 @@ mtk_hdmi_audio_digital_mute(struct device *dev, void *data, bool enable)
|
||||
{
|
||||
struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
|
||||
|
||||
dev_dbg(dev, "%s(%d)\n", __func__, enable);
|
||||
|
||||
if (enable)
|
||||
mtk_hdmi_hw_aud_mute(hdmi);
|
||||
else
|
||||
@@ -1665,8 +1659,6 @@ static int mtk_hdmi_audio_get_eld(struct device *dev, void *data, uint8_t *buf,
|
||||
{
|
||||
struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
|
||||
|
||||
dev_dbg(dev, "%s\n", __func__);
|
||||
|
||||
memcpy(buf, hdmi->conn.eld, min(sizeof(hdmi->conn.eld), len));
|
||||
|
||||
return 0;
|
||||
@@ -1766,7 +1758,6 @@ static int mtk_drm_hdmi_probe(struct platform_device *pdev)
|
||||
goto err_bridge_remove;
|
||||
}
|
||||
|
||||
dev_dbg(dev, "mediatek hdmi probe success\n");
|
||||
return 0;
|
||||
|
||||
err_bridge_remove:
|
||||
@@ -1789,7 +1780,7 @@ static int mtk_hdmi_suspend(struct device *dev)
|
||||
struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
|
||||
|
||||
mtk_hdmi_clk_disable_audio(hdmi);
|
||||
dev_dbg(dev, "hdmi suspend success!\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1804,7 +1795,6 @@ static int mtk_hdmi_resume(struct device *dev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
dev_dbg(dev, "hdmi resume success!\n");
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user