Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f06da264 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

i915: Fix more size_t format string warnings



The DRI people seem to have a hard time getting these right (see also
commit aeb565df).

Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ff747330
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1457,7 +1457,7 @@ static void i915_write_fence_reg(struct drm_i915_fence_reg *reg)

	if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
	    (obj_priv->gtt_offset & (obj->size - 1))) {
		WARN(1, "%s: object 0x%08x not 1M or size (0x%x) aligned\n",
		WARN(1, "%s: object 0x%08x not 1M or size (0x%zx) aligned\n",
		     __func__, obj_priv->gtt_offset, obj->size);
		return;
	}