Re: [git pull] drm for 4.5-rc1

From: Linus Torvalds
Date: Sun Jan 17 2016 - 17:00:36 EST


On Sun, Jan 17, 2016 at 1:35 PM, Dave Airlie <airlied@xxxxxxxx> wrote:
>
> This is the main drm pull request for 4.5. I don't think I've missed anything too
> major, I'm mostly back at work now but I'll probably get some sleep in 5 years time.

Good luck with that.

> I think it should fix the i915 warning from the audio tree, if not let me
> know.

It does seem to fix it.

It replaces it with this one, though:

drivers/gpu/drm/vc4/vc4_validate.c: In function âvalidate_gl_shader_recâ:
drivers/gpu/drm/vc4/vc4_validate.c:864:12: warning: format â%dâ
expects argument of type âintâ, but argument 4 has type âsize_t {aka
long unsigned int}â [-Wformat=]

I'm assuming it has mainly been developed for 32-bit targets, and is
just enabled on x86-64 for compile testing. But the right thing to use
for size_t is "%zu".

Linus