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:
Konsta Hölttä
2022-02-10 12:36:57 +02:00
committed by mobile promotions
parent 10c3c0ddbb
commit 81c220b95b
3 changed files with 4 additions and 4 deletions

View File

@@ -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);
}
/*