drm/i915/bios: set default backlight controller index
authorJani Nikula <jani.nikula@intel.com>
Tue, 7 Feb 2023 11:16:26 +0000 (13:16 +0200)
committerJani Nikula <jani.nikula@intel.com>
Wed, 8 Feb 2023 11:16:59 +0000 (13:16 +0200)
commita0dcb06d29d9e477e1984dc3859e61568361fc1a
tree54e03fee54eebf51db770d4185f494b8579680bc
parent70994becf2d0899dc9f8c23154af6aad34b0981d
drm/i915/bios: set default backlight controller index

With backlight controller set to -1 in intel_panel_init_alloc() to
distinguish uninitialized values, and controller later being set only if
it's present in VBT, we can end up with -1 for the controller:

    [drm:intel_bios_init_panel [i915]] VBT backlight PWM modulation
    frequency 200 Hz, active high, min brightness 0, level 255,
    controller 4294967295

There's no harm if it happens on platforms that ignore controller due to
only one backlight controller being present, like on VLV above, but play
it safe.

Fixes: bf38bba3e7d6 ("drm/i915: Try to use the correct power sequencer intiially on bxt/glk")
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230207111626.1839645-1-jani.nikula@intel.com
drivers/gpu/drm/i915/display/intel_bios.c