[Intel-xe] [PATCH v2 9/9] drm/i915/display: use intel_bo_to_drm_bo in intel_fbdev

Rodrigo Vivi rodrigo.vivi at intel.com
Tue Nov 14 18:49:17 UTC 2023


On Tue, Nov 14, 2023 at 03:04:43PM +0200, Jouni Högander wrote:
> We are preparing for Xe driver. I915 and Xe object implementation are
> differing. Do not use  i915_gem_object->base directly. Instead use
> intel_bo_to_drm_bo.
> 
> Signed-off-by: Jouni Högander <jouni.hogander at intel.com>
> Signed-off-by: Maarten Lankhorst <maarten.lankhorst at linux.intel.com>

also here, let's go directly to drm-intel-next (of course, resending
both patches (i915-only) to intel-gfx mailing list)
Reviewed-by: Rodrigo Vivi <rodrigo.vivi at intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_fbdev.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c
> index 252f254345a2..05f614f992d6 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbdev.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
> @@ -332,12 +332,12 @@ static bool intel_fbdev_init_bios(struct drm_device *dev,
>  			continue;
>  		}
>  
> -		if (obj->base.size > max_size) {
> +		if (intel_bo_to_drm_bo(obj)->size > max_size) {
>  			drm_dbg_kms(&i915->drm,
>  				    "found possible fb from [PLANE:%d:%s]\n",
>  				    plane->base.base.id, plane->base.name);
>  			fb = to_intel_framebuffer(plane_state->uapi.fb);
> -			max_size = obj->base.size;
> +			max_size = intel_bo_to_drm_bo(obj)->size;
>  		}
>  	}
>  
> -- 
> 2.34.1
> 


More information about the Intel-xe mailing list