Commit 1637c315 authored by Bo-Chen Chen's avatar Bo-Chen Chen Committed by Dmitry Osipenko
Browse files

drm/mediatek: dp: Fix compiler warning in mtk_dp_video_mute()

parent 821ddae7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1222,8 +1222,8 @@ static void mtk_dp_video_mute(struct mtk_dp *mtk_dp, bool enable)
		      mtk_dp->data->smc_cmd, enable,
		      0, 0, 0, 0, 0, &res);

	dev_dbg(mtk_dp->dev, "smc cmd: 0x%x, p1: 0x%x, ret: 0x%lx-0x%lx\n",
		mtk_dp->data->smc_cmd, enable, res.a0, res.a1);
	dev_dbg(mtk_dp->dev, "smc cmd: 0x%x, p1: %s, ret: 0x%lx-0x%lx\n",
		mtk_dp->data->smc_cmd, enable ? "enable" : "disable", res.a0, res.a1);
}

static void mtk_dp_audio_mute(struct mtk_dp *mtk_dp, bool mute)