diff options
| author | Jani Nikula <[email protected]> | 2025-01-29 14:46:34 +0000 |
|---|---|---|
| committer | Jani Nikula <[email protected]> | 2025-01-31 07:47:37 +0000 |
| commit | bb322c6fa16f97951d75dba46b9ef0cb2cfcb2d5 (patch) | |
| tree | 6a2fa5f92cec1f914111a0ebe1bfc24c4291eddc /drivers/gpu/drm/i915/display/intel_dp_mst.h | |
| parent | drm/i915/dp: constify struct link_config_limits pointers (diff) | |
| download | kernel-bb322c6fa16f97951d75dba46b9ef0cb2cfcb2d5.tar.gz kernel-bb322c6fa16f97951d75dba46b9ef0cb2cfcb2d5.zip | |
drm/i915/dp: change the order of intel_dp_mtp_tu_compute_config() params
Pointers first, bpp params in min, max, step. This is slightly more
natural to follow.
Reviewed-by: Imre Deak <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/ea9669edc5973cdbca92aeb4e168850015e9d1bb.1738161945.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/i915/display/intel_dp_mst.h')
| -rw-r--r-- | drivers/gpu/drm/i915/display/intel_dp_mst.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.h b/drivers/gpu/drm/i915/display/intel_dp_mst.h index c6bdc1d190a4..a713a1c10154 100644 --- a/drivers/gpu/drm/i915/display/intel_dp_mst.h +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.h @@ -33,8 +33,7 @@ bool intel_dp_mst_verify_dpcd_state(struct intel_dp *intel_dp); int intel_dp_mtp_tu_compute_config(struct intel_dp *intel_dp, struct intel_crtc_state *crtc_state, - int max_bpp, int min_bpp, struct drm_connector_state *conn_state, - int step, bool dsc); + int min_bpp, int max_bpp, int step, bool dsc); #endif /* __INTEL_DP_MST_H__ */ |
