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

Commit 2150c19b authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

drm/omap: 64bit compile fixes



Fix a few type issues that cause compile warnings on 64 bit ARM
compiler. The change should not affect 32bit platforms.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
parent 2e953d83
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -388,7 +388,7 @@ struct tiler_block *tiler_reserve_2d(enum tiler_fmt fmt, uint16_t w,
	u32 min_align = 128;
	int ret;
	unsigned long flags;
	size_t slot_bytes;
	u32 slot_bytes;

	BUG_ON(!validfmt(fmt));

+1 −1
Original line number Diff line number Diff line
@@ -450,7 +450,7 @@ struct drm_framebuffer *omap_framebuffer_init(struct drm_device *dev,

		if (size > omap_gem_mmap_size(bos[i]) - mode_cmd->offsets[i]) {
			dev_dbg(dev->dev,
				"provided buffer object is too small! %d < %d\n",
				"provided buffer object is too small! %zu < %d\n",
				bos[i]->size - mode_cmd->offsets[i], size);
			ret = -EINVAL;
			goto fail;
+1 −1
Original line number Diff line number Diff line
@@ -1048,7 +1048,7 @@ void omap_gem_describe(struct drm_gem_object *obj, struct seq_file *m)
					area->p1.x, area->p1.y);
		}
	} else {
		seq_printf(m, " %d", obj->size);
		seq_printf(m, " %zu", obj->size);
	}

	seq_printf(m, "\n");