Skip to content

Commit 7347378

Browse files
nyanmisakaamazingfate
authored andcommitted
drivers: drm: dw-hdmi-qp: Stop compute-N spamming kernel logs
Stop the following device warning. ``` [24073.665748] dwhdmi-rockchip fde80000.hdmi: Rate 241500000 missing; compute N dynamically ``` Signed-off-by: nyanmisaka <[email protected]>
1 parent f0d85e2 commit 7347378

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/bridge/synopsys/dw-hdmi-qp.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -573,8 +573,8 @@ static unsigned int hdmi_find_n(struct dw_hdmi_qp *hdmi, unsigned long pixel_clk
573573
if (n > 0)
574574
return n;
575575

576-
dev_warn(hdmi->dev, "Rate %lu missing; compute N dynamically\n",
577-
pixel_clk);
576+
dev_dbg(hdmi->dev, "Rate %lu missing; compute N dynamically\n",
577+
pixel_clk);
578578

579579
return hdmi_compute_n(hdmi, pixel_clk, sample_rate);
580580
}

0 commit comments

Comments
 (0)