mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 01:55:51 +02:00
drm/i915/dp: Include all relevant AS SDP fields in comparison
Add missing drm_dp_as_sdp header fields to intel_compare_dp_as_sdp() comparison. Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patch.msgid.link/20260511123218.1589830-5-ankit.k.nautiyal@intel.com
This commit is contained in:
parent
801b3544b9
commit
51d34dd8ac
|
|
@ -4881,11 +4881,14 @@ static bool
|
|||
intel_compare_dp_as_sdp(const struct drm_dp_as_sdp *a,
|
||||
const struct drm_dp_as_sdp *b)
|
||||
{
|
||||
return a->revision == b->revision &&
|
||||
return a->sdp_type == b->sdp_type &&
|
||||
a->revision == b->revision &&
|
||||
a->length == b->length &&
|
||||
a->vtotal == b->vtotal &&
|
||||
a->target_rr == b->target_rr &&
|
||||
a->duration_incr_ms == b->duration_incr_ms &&
|
||||
a->duration_decr_ms == b->duration_decr_ms &&
|
||||
a->target_rr_divider == b->target_rr_divider &&
|
||||
a->mode == b->mode;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user