> -----Original Message----- > From: C, Ramalingam > Sent: Thursday, January 31, 2019 09:00 > To: [email protected]; [email protected]; > [email protected]; Winkler, Tomas <[email protected]>; Shankar, > Uma <[email protected]> > Cc: C, Ramalingam <[email protected]> > Subject: [PATCH v10 19/40] drm/i915: Add HDCP2.2 support for DP connectors > > On DP connector init, intel_hdcp_init is passed with a flag for hdcp2.2 > support > based on the platform capability. > > v2: > Rebased. > v3: > Collected the reviewed-by received. > > Signed-off-by: Ramalingam C <[email protected]> > Reviewed-by: Uma Shankar <[email protected]> > --- > drivers/gpu/drm/i915/intel_dp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c > index 4e36df266ab3..88c889770517 100644 > --- a/drivers/gpu/drm/i915/intel_dp.c > +++ b/drivers/gpu/drm/i915/intel_dp.c > @@ -7301,7 +7301,7 @@ intel_dp_init_connector(struct intel_digital_port > *intel_dig_port, > > if (is_hdcp_supported(dev_priv, port) && !intel_dp_is_edp(intel_dp)) { > int ret = intel_hdcp_init(intel_connector, > &intel_dp_hdcp_shim, > - false); > + is_hdcp2_supported(dev_priv)); intel_hdcp_init is always called with is_hdcp2_supported() both for DP and HDMI, so you can just remove the argument it's redundant.
Thanks Tomas _______________________________________________ Intel-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/intel-gfx
