diff options
author | Jani Nikula <jani.nikula@intel.com> | 2022-12-20 16:01:05 +0200 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2022-12-22 15:20:40 +0200 |
commit | a561933c571798868b5fa42198427a7e6df56c09 (patch) | |
tree | 814e653909211690c84c6f6f0ea56b105c53cea0 /drivers/gpu/drm/i915/display/intel_dsi_vbt.c | |
parent | 65e75eda82d8857ab8732b98ead6997a8afeab4a (diff) | |
download | linux-a561933c571798868b5fa42198427a7e6df56c09.tar.gz linux-a561933c571798868b5fa42198427a7e6df56c09.tar.bz2 linux-a561933c571798868b5fa42198427a7e6df56c09.zip |
drm/i915/dsi: fix MIPI_BKLT_EN_1 native GPIO index
Due to copy-paste fail, MIPI_BKLT_EN_1 would always use PPS index 1,
never 0. Fix the sloppiest commit in recent memory.
Fixes: f087cfe6fcff ("drm/i915/dsi: add support for ICL+ native MIPI GPIO sequence")
Reported-by: 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/20221220140105.313333-1-jani.nikula@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/display/intel_dsi_vbt.c')
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_dsi_vbt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_dsi_vbt.c b/drivers/gpu/drm/i915/display/intel_dsi_vbt.c index 41f025f089d9..2cbc1292ab38 100644 --- a/drivers/gpu/drm/i915/display/intel_dsi_vbt.c +++ b/drivers/gpu/drm/i915/display/intel_dsi_vbt.c @@ -430,7 +430,7 @@ static void icl_native_gpio_set_value(struct drm_i915_private *dev_priv, break; case MIPI_BKLT_EN_1: case MIPI_BKLT_EN_2: - index = gpio == MIPI_AVDD_EN_1 ? 0 : 1; + index = gpio == MIPI_BKLT_EN_1 ? 0 : 1; intel_de_rmw(dev_priv, PP_CONTROL(index), EDP_BLC_ENABLE, value ? EDP_BLC_ENABLE : 0); |