Commit e2db5524 authored by Ville Syrjälä's avatar Ville Syrjälä

drm/i915: Replace some hand rolled max()s

Use max() instead of hand rolling it.
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200512174145.3186-8-ville.syrjala@linux.intel.comReviewed-by: default avatarManasi Navare <manasi.d.navare@intel.com>
parent f6adb5f0
...@@ -59,13 +59,8 @@ void intel_dp_get_adjust_train(struct intel_dp *intel_dp, ...@@ -59,13 +59,8 @@ void intel_dp_get_adjust_train(struct intel_dp *intel_dp,
u8 preemph_max; u8 preemph_max;
for (lane = 0; lane < intel_dp->lane_count; lane++) { for (lane = 0; lane < intel_dp->lane_count; lane++) {
u8 this_v = drm_dp_get_adjust_request_voltage(link_status, lane); v = max(v, drm_dp_get_adjust_request_voltage(link_status, lane));
u8 this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane); p = max(p, drm_dp_get_adjust_request_pre_emphasis(link_status, lane));
if (this_v > v)
v = this_v;
if (this_p > p)
p = this_p;
} }
preemph_max = intel_dp->preemph_max(intel_dp); preemph_max = intel_dp->preemph_max(intel_dp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment