Re: [PATCH v1] drm/i915/bdb: Fix version check

2021-09-22 Thread Radosław Biernacki
- dropping stable ... > > diff --git a/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > b/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > index 330077c2e588..fff456bf8783 100644 > > --- a/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > +++ b/drivers/gpu/drm/i915/display/intel_vbt_defs.h >

Re: [PATCH v1] drm/i915/bdb: Fix version check

2021-09-21 Thread Jani Nikula
On Tue, 21 Sep 2021, Radosław Biernacki wrote: > - dropping stable > > ... > >> > diff --git a/drivers/gpu/drm/i915/display/intel_vbt_defs.h >> > b/drivers/gpu/drm/i915/display/intel_vbt_defs.h >> > index 330077c2e588..fff456bf8783 100644 >> > --- a/drivers/gpu/drm/i915/display/intel_vbt_defs.h

Re: [PATCH v1] drm/i915/bdb: Fix version check

2021-09-21 Thread Lukasz Majczak
pon., 20 wrz 2021 o 22:47 Souza, Jose napisał(a): > > On Mon, 2021-09-20 at 16:11 +0200, Lukasz Majczak wrote: > > With patch "drm/i915/vbt: Fix backlight parsing for VBT 234+" > > the size of bdb_lfp_backlight_data structure has been increased, > > causing if-statement in the parse_lfp_backlight

Re: [PATCH v1] drm/i915/bdb: Fix version check

2021-09-20 Thread Souza, Jose
On Mon, 2021-09-20 at 16:11 +0200, Lukasz Majczak wrote: > With patch "drm/i915/vbt: Fix backlight parsing for VBT 234+" > the size of bdb_lfp_backlight_data structure has been increased, > causing if-statement in the parse_lfp_backlight function > that comapres this structure size to the one

[PATCH v1] drm/i915/bdb: Fix version check

2021-09-20 Thread Lukasz Majczak
With patch "drm/i915/vbt: Fix backlight parsing for VBT 234+" the size of bdb_lfp_backlight_data structure has been increased, causing if-statement in the parse_lfp_backlight function that comapres this structure size to the one retrieved from BDB, always to fail for older revisions. This patch

Re: [PATCH v1] drm/i915/bdb: Fix version check

2021-09-20 Thread Jani Nikula
On Mon, 20 Sep 2021, Lukasz Majczak wrote: > With patch "drm/i915/vbt: Fix backlight parsing for VBT 234+" > the size of bdb_lfp_backlight_data structure has been increased, > causing if-statement in the parse_lfp_backlight function > that comapres this structure size to the one retrieved from