Commit eb026024 authored by Edward O'Callaghan's avatar Edward O'Callaghan Committed by Oded Gabbay

amdkfd: Trim unnescessary intermediate err var in kfd_chardev.c

Found-By: Coccinelle
Signed-off-by: default avatarEdward O'Callaghan <eocallaghan@alterapraxis.com>
Signed-off-by: default avatarOded Gabbay <oded.gabbay@gmail.com>
parent 371d5b65
......@@ -131,12 +131,11 @@ static int kfd_ioctl_get_version(struct file *filep, struct kfd_process *p,
void *data)
{
struct kfd_ioctl_get_version_args *args = data;
int err = 0;
args->major_version = KFD_IOCTL_MAJOR_VERSION;
args->minor_version = KFD_IOCTL_MINOR_VERSION;
return err;
return 0;
}
static int set_queue_properties_from_user(struct queue_properties *q_properties,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment