Re: [PATCH] drm/amdgpu: fix printk format for size_t variable

2022-02-21 Thread Tom Rix
On 2/21/22 12:53 PM, Luben Tuikov wrote: On 2022-02-21 15:36, Tom Rix wrote: On 2/21/22 11:57 AM, Luben Tuikov wrote: Hi Tom, This was already fixed with this patch, and LKML was CC-ed. See the CC tags in the patch below, commit 4f7d7cda90cbd7 Author: Luben Tuikov Date: Wed Feb 16

Re: [PATCH] drm/amdgpu: fix printk format for size_t variable

2022-02-21 Thread Luben Tuikov
On 2022-02-21 15:36, Tom Rix wrote: > > On 2/21/22 11:57 AM, Luben Tuikov wrote: >> Hi Tom, >> >> This was already fixed with this patch, and LKML was CC-ed. See the CC tags >> in the patch below, >> >> commit 4f7d7cda90cbd7 >> Author: Luben Tuikov >> Date: Wed Feb 16 16:47:32 2022 -0500 >>

Re: [PATCH] drm/amdgpu: fix printk format for size_t variable

2022-02-21 Thread Tom Rix
On 2/21/22 11:57 AM, Luben Tuikov wrote: Hi Tom, This was already fixed with this patch, and LKML was CC-ed. See the CC tags in the patch below, commit 4f7d7cda90cbd7 Author: Luben Tuikov Date: Wed Feb 16 16:47:32 2022 -0500 drm/amdgpu: Fix ARM compilation warning Fix

Re: [PATCH] drm/amdgpu: fix printk format for size_t variable

2022-02-21 Thread Luben Tuikov
Hi Tom, This was already fixed with this patch, and LKML was CC-ed. See the CC tags in the patch below, commit 4f7d7cda90cbd7 Author: Luben Tuikov Date: Wed Feb 16 16:47:32 2022 -0500 drm/amdgpu: Fix ARM compilation warning Fix this ARM warning:

[PATCH] drm/amdgpu: fix printk format for size_t variable

2022-02-21 Thread trix
From: Tom Rix On mips64 allyesconfig, there is this build break amdgpu_discovery.c:671:35: error: format '%ld' expects argument of type 'long int', but argument 4 has type 'size_t' {aka 'unsigned int'} DRM_DEBUG("match:%d @ ip_offset:%ld", ii, ip_offset); For size_t, use %zu. Fixes: