On Mon, Oct 21, 2024 at 04:54:15PM +0300, Jani Nikula wrote: > Switch to using the new display->platform.<platform> members for > platform identification in display code. > > Signed-off-by: Jani Nikula <jani.nikula@xxxxxxxxx> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@xxxxxxxxx> > --- > drivers/gpu/drm/i915/display/intel_vga.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_vga.c b/drivers/gpu/drm/i915/display/intel_vga.c > index 2c76a0176a35..fd18dd07ae49 100644 > --- a/drivers/gpu/drm/i915/display/intel_vga.c > +++ b/drivers/gpu/drm/i915/display/intel_vga.c > @@ -16,9 +16,7 @@ > > static i915_reg_t intel_vga_cntrl_reg(struct intel_display *display) > { > - struct drm_i915_private *i915 = to_i915(display->drm); > - > - if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) > + if (display->platform.valleyview || display->platform.cherryview) > return VLV_VGACNTRL; > else if (DISPLAY_VER(display) >= 5) > return CPU_VGACNTRL; > -- > 2.39.5 >