From: Oded Gabbay Date: Thu, 29 Jan 2015 08:33:34 +0000 (+0200) Subject: drm/amdkfd: max num of queues can't be 0 X-Git-Tag: v3.19~14^2~1^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ca400b2a1a6c768416725e5f873829e23300d3eb;p=karo-tx-linux.git drm/amdkfd: max num of queues can't be 0 Signed-off-by: Oded Gabbay Reviewed-by: Jammy Zhou Reviewed-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_module.c b/drivers/gpu/drm/amd/amdkfd/kfd_module.c index a8be6df85347..1c385c23dd0b 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_module.c +++ b/drivers/gpu/drm/amd/amdkfd/kfd_module.c @@ -95,10 +95,10 @@ static int __init kfd_module_init(void) } /* Verify module parameters */ - if ((max_num_of_queues_per_device < 0) || + if ((max_num_of_queues_per_device < 1) || (max_num_of_queues_per_device > KFD_MAX_NUM_OF_QUEUES_PER_DEVICE)) { - pr_err("kfd: max_num_of_queues_per_device must be between 0 to KFD_MAX_NUM_OF_QUEUES_PER_DEVICE\n"); + pr_err("kfd: max_num_of_queues_per_device must be between 1 to KFD_MAX_NUM_OF_QUEUES_PER_DEVICE\n"); return -1; }