Re: [PATCH] drm/amdgpu: Fix ARM compilation warning

2022-02-18 Thread Randy Dunlap
Also seen on i386. On 2/16/22 14:08, Luben Tuikov wrote: > Fix this ARM warning: > > drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c:664:35: warning: format '%ld' > expects argument of type 'long int', but argument 4 has type 'size_t' {aka > 'unsigned int'} [-Wformat=] > > Cc: Alex Deucher > Cc:

Re: [PATCH] drm/amdgpu: Fix ARM compilation warning

2022-02-16 Thread Deucher, Alexander
: [PATCH] drm/amdgpu: Fix ARM compilation warning Fix this ARM warning: drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c:664:35: warning: format '%ld' expects argument of type 'long int', but argument 4 has type 'size_t' {aka 'unsigned int'} [-Wformat=] Cc: Alex

[PATCH] drm/amdgpu: Fix ARM compilation warning

2022-02-16 Thread Luben Tuikov
Fix this ARM warning: drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c:664:35: warning: format '%ld' expects argument of type 'long int', but argument 4 has type 'size_t' {aka 'unsigned int'} [-Wformat=] Cc: Alex Deucher Cc: kbuild-...@lists.01.org Cc: linux-ker...@vger.kernel.org Reported-by: kern