mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
gpu: nvgpu: use %pS for function pointers
%pF is obsolete. Use %pS when debug printing function symbols. (One print in kmem was already using this.) Bug 3532466 Change-Id: Id3994abbcb0dc2495e69f3c872149c6ea5e3b5cb Signed-off-by: Konsta Hölttä <kholtta@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2667999 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
10c3c0ddbb
commit
81c220b95b
@@ -23,7 +23,7 @@
|
||||
/* Format and print a single function pointer to the specified seq_file. */
|
||||
static void __hal_print_op(struct seq_file *s, void *op_ptr)
|
||||
{
|
||||
seq_printf(s, "%pF\n", op_ptr);
|
||||
seq_printf(s, "%pS\n", op_ptr);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user