drm/i915: Iterate over pipes and skip the disabled one
authorAnshuman Gupta <anshuman.gupta@intel.com>
Mon, 24 Feb 2020 12:39:58 +0000 (18:09 +0530)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 26 Feb 2020 14:14:35 +0000 (16:14 +0200)
commitb8b65ccda50d135ef3f9d920d3bfe353e63b129a
tree92912f9a87bf4f5c1861fe4b0eaba5e3b7827ef8
parent80f286a552c6cc554199a7d14b76836cffabd451
drm/i915: Iterate over pipes and skip the disabled one

It should not be assumed that a disabled display pipe will be
always last the pipe.
for_each_pipe() should iterate over I915_MAX_PIPES and check
for the disabled pipe and skip that pipe so that it should not
initialize the intel crtc for any disabled pipes.

Due to changes in for_each_pipe() macro, it requires to handle
the below compilation error.
"suggest explicit braces to avoid ambiguous ‘else’
[-Werror=dangling-else]"

v2:
- Cosmetic changes, removed unwanted parentheses. [Ville]

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200224124004.26712-2-anshuman.gupta@intel.com
drivers/gpu/drm/i915/display/intel_display.h
drivers/gpu/drm/i915/i915_irq.c