Update %lu to %llu in drm_info() calls that print inode->i_ino, since
i_ino is now u64.

Signed-off-by: Jeff Layton <[email protected]>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c 
b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
index 
1fb95640069667bf731df05990b57c6e0a0d2c16..aaa8cdc122c49ebf0b5b6c55edb3a1db2a4fd710
 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
@@ -1676,9 +1676,9 @@ u64 amdgpu_bo_print_info(int id, struct amdgpu_bo *bo, 
struct seq_file *m)
        attachment = READ_ONCE(bo->tbo.base.import_attach);
 
        if (attachment)
-               seq_printf(m, " imported from ino:%lu", 
file_inode(dma_buf->file)->i_ino);
+               seq_printf(m, " imported from ino:%llu", 
file_inode(dma_buf->file)->i_ino);
        else if (dma_buf)
-               seq_printf(m, " exported as ino:%lu", 
file_inode(dma_buf->file)->i_ino);
+               seq_printf(m, " exported as ino:%llu", 
file_inode(dma_buf->file)->i_ino);
 
        amdgpu_bo_print_flag(m, bo, CPU_ACCESS_REQUIRED);
        amdgpu_bo_print_flag(m, bo, NO_CPU_ACCESS);

-- 
2.53.0


Reply via email to