You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
drm/i915: fix a printk format
This printk leads to the following Smatch warning: drivers/gpu/drm/i915/i915_gem_gtt.c:336 alloc_pt_range() error: '%pa' expects argument of type 'phys_addr_t*', argument 5 has type 'struct i915_page_table_entry*' It looks like a simple typo to me where "%p" was intended instead of "%pa". Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
committed by
Daniel Vetter
parent
626ad6f37d
commit
686135da90
@@ -334,7 +334,7 @@ static int alloc_pt_range(struct i915_page_directory_entry *pd, uint16_t pde, si
|
||||
goto err_out;
|
||||
}
|
||||
WARN(pd->page_table[i],
|
||||
"Leaking page directory entry %d (%pa)\n",
|
||||
"Leaking page directory entry %d (%p)\n",
|
||||
i, pd->page_table[i]);
|
||||
pd->page_table[i] = pt;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user