Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amdkfd: Fix a couple of spelling mistakes

There are a couple of spelling mistakes, one in a pr_warn message
and one in a seq_printf message. Fix these.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Colin Ian King and committed by
Alex Deucher
03a4c89d d8ccbb5e

+2 -2
+1 -1
drivers/gpu/drm/amd/amdkfd/kfd_process.c
··· 830 830 int ret; 831 831 832 832 if (process->kobj) { 833 - pr_warn("kobject already exsists for the kfd_process\n"); 833 + pr_warn("kobject already exists for the kfd_process\n"); 834 834 return -EINVAL; 835 835 } 836 836
+1 -1
drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
··· 1115 1115 break; 1116 1116 default: 1117 1117 seq_printf(m, 1118 - " Qeueu node with bad user queue type %d on device %x\n", 1118 + " Queue node with bad user queue type %d on device %x\n", 1119 1119 q->properties.type, q->device->id); 1120 1120 continue; 1121 1121 }