On Sun, 23 Feb 2020, Chris Wilson <ch...@chris-wilson.co.uk> wrote:
> Restore the previous WARN_ON(cond) so that we don't complain about poor
> old Cherryview.
>
> Fixes: eb020ca3d43f ("drm/i915/display/dp: Make WARN* drm specific where 
> drm_device ptr is available")
> Signed-off-by: Chris Wilson <ch...@chris-wilson.co.uk>
> Cc: Pankaj Bharadiya <pankaj.laxminarayan.bharad...@intel.com>
> Cc: Jani Nikula <jani.nik...@intel.com>

Reviewed-by: Jani Nikula <jani.nik...@intel.com>

Auch.

How did a cocci patch have something like this? Manual edits on top?

I did read the patches through, despite them being cocci stuff, but
missed this anyway.

But how did CI not complain? Did I miss the warning?

BR,
Jani.


> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c 
> b/drivers/gpu/drm/i915/display/intel_dp.c
> index 2f93326c16a3..e8bebd27004d 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -1023,9 +1023,10 @@ void intel_power_sequencer_reset(struct 
> drm_i915_private *dev_priv)
>  {
>       struct intel_encoder *encoder;
>  
> -     if (drm_WARN_ON(&dev_priv->drm, !IS_VALLEYVIEW(dev_priv) &&
> -                     IS_CHERRYVIEW(dev_priv) &&
> -                     !IS_GEN9_LP(dev_priv)))
> +     if (drm_WARN_ON(&dev_priv->drm,
> +                     !(IS_VALLEYVIEW(dev_priv) ||
> +                       IS_CHERRYVIEW(dev_priv) ||
> +                       IS_GEN9_LP(dev_priv))))
>               return;
>  
>       /*

-- 
Jani Nikula, Intel Open Source Graphics Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to