Fix broken HDMI output on rk3328

Restore 'less than or equal' match of clocks that was lost in patch transition from 6.3 to 6.4:
ttps://github.com/armbian/build/blob/6d981baba68699b0c6ada476704556e11dd661bc/patch/kernel/archive/rockchip64-6.3/rk356x-vop2-support.patch#L333
6d981baba6/patch/kernel/archive/rockchip64-6.4/rk356x-vop2-support.patch (L333)
This commit is contained in:
Alex Shumsky 2023-09-18 21:18:47 +03:00 committed by Paolo
parent 3dd634ac01
commit b7af4a6406

View File

@ -333,6 +333,15 @@ index 112699949db9..4f9fa4fd2629 100644
{ ~0UL, 0x0000, 0x0000, 0x0000}
};
@@ -257,7 +246,7 @@
struct rockchip_hdmi *hdmi = data;
const struct dw_hdmi_mpll_config *mpll_cfg = rockchip_mpll_cfg;
int pclk = mode->clock * 1000;
- bool exact_match = hdmi->plat_data->phy_force_vendor;
+ bool exact_match = false;
int i;
if (hdmi->ref_clk) {
--
Armbian