Skip to content

Commit cfaf51a

Browse files
committed
Merge tag 'drm-intel-fixes-2025-01-15' of https://gitlab.freedesktop.org/drm/i915/kernel into drm-fixes
- Relax clear color alignment to 64 bytes [fb] (Ville Syrjälä) Signed-off-by: Dave Airlie <[email protected]> From: Tvrtko Ursulin <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/Z4fdIVf68qsqIpiN@linux
2 parents cf8182d + 1a5401e commit cfaf51a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/display/intel_fb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1694,7 +1694,7 @@ int intel_fill_fb_info(struct drm_i915_private *i915, struct intel_framebuffer *
16941694
* arithmetic related to alignment and offset calculation.
16951695
*/
16961696
if (is_gen12_ccs_cc_plane(&fb->base, i)) {
1697-
if (IS_ALIGNED(fb->base.offsets[i], PAGE_SIZE))
1697+
if (IS_ALIGNED(fb->base.offsets[i], 64))
16981698
continue;
16991699
else
17001700
return -EINVAL;

0 commit comments

Comments
 (0)