Skip to content

Commit

Permalink
Merge tag 'drm-misc-next-fixes-2024-11-28' of https://gitlab.freedesk…
Browse files Browse the repository at this point in the history
…top.org/drm/misc/kernel into drm-next

A single buildfix for 32-bits rockchip compilation.

Signed-off-by: Dave Airlie <[email protected]>
From: Maarten Lankhorst <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
airlied committed Nov 28, 2024
2 parents f2fdcd5 + 818956c commit c54fdcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static void dw_hdmi_qp_rockchip_encoder_enable(struct drm_encoder *encoder)
* comment in rk_hdptx_phy_power_on() from
* drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c
*/
phy_set_bus_width(hdmi->phy, rate / 100);
phy_set_bus_width(hdmi->phy, div_u64(rate, 100));
}
}

Expand Down

0 comments on commit c54fdcc

Please sign in to comment.