From: Srinivasan Shanmugam Date: Sat, 12 Aug 2023 14:50:31 +0000 (+0530) Subject: drm/amdgpu: Replace ternary operator with min() in 'amdgpu_iomem_write' X-Git-Tag: v6.6.7~1918^2~6^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b828e1004cce55a078ba7bb11e252c2499793025;p=platform%2Fkernel%2Flinux-starfive.git drm/amdgpu: Replace ternary operator with min() in 'amdgpu_iomem_write' Fixes the following coccicheck: drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:2482:16-17: WARNING opportunity for min() min() macro is defined in include/linux/minmax.h. It avoids multiple evaluations of the arguments when non-constant and performs strict type-checking. Cc: Guchun Chen Cc: Christian König Cc: Alex Deucher Cc: "Pan, Xinhui" Signed-off-by: Srinivasan Shanmugam Reviewed-by: Christian König Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c index f27bd4a..4e51dce 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c @@ -2474,7 +2474,7 @@ static ssize_t amdgpu_iomem_write(struct file *f, const char __user *buf, struct page *p; void *ptr; - bytes = bytes < size ? bytes : size; + bytes = min(bytes, size); addr = dom ? iommu_iova_to_phys(dom, addr) : addr;