diff options
author | Philip Yang <Philip.Yang@amd.com> | 2022-03-04 09:33:27 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2022-03-07 14:59:59 -0500 |
commit | 53b97af4a44abd21344cc9f13986ba53051287bb (patch) | |
tree | a8da55dfb798997df999c9a66f6428ad1747b065 | |
parent | 48e9fbd1a28480caf2ac5ec6fcb79ac221735c5d (diff) | |
download | linux-53b97af4a44abd21344cc9f13986ba53051287bb.tar.bz2 |
drm/amdkfd: Add format attribute to kfd_smi_event_add
To enable compiler type-checked against the format string in callers.
All warnings (new ones prefixed by >>):
>> warning: function 'kfd_smi_event_add' might be a candidate for
'gnu_printf' format attribute [-Wsuggest-attribute=format]
Fixes: d58b8a99cbb8 ("drm/amdkfd: Add SMI add event helper")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Philip Yang <Philip.Yang@amd.com>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c b/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c index bba8d9692a4c..e4beebb1c80a 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c +++ b/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c @@ -176,6 +176,7 @@ static void add_event_to_kfifo(struct kfd_dev *dev, unsigned int smi_event, rcu_read_unlock(); } +__printf(3, 4) static void kfd_smi_event_add(struct kfd_dev *dev, unsigned int event, char *fmt, ...) { |