Replace kzalloc(n * sizeof(...), ...) with kcalloc(n, sizeof(...), ...)
since kcalloc is the preferred API in case of allocating with multiply.

Fixes the below:

WARNING: Prefer kcalloc over kzalloc with multiply

Cc: Guchun Chen <[email protected]>
Cc: Christian König <[email protected]>
Cc: Alex Deucher <[email protected]>
Cc: "Pan, Xinhui" <[email protected]>
Signed-off-by: Srinivasan Shanmugam <[email protected]>
---
 drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c 
b/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
index f9a5a2c0573e..0673cda547bb 100644
--- a/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
@@ -1972,10 +1972,9 @@ static int gmc_v9_0_init_mem_ranges(struct amdgpu_device 
*adev)
 {
        bool valid;
 
-       adev->gmc.mem_partitions = kzalloc(
-               MAX_MEM_RANGES * sizeof(struct amdgpu_mem_partition_info),
-               GFP_KERNEL);
-
+       adev->gmc.mem_partitions = kcalloc(MAX_MEM_RANGES,
+                                          sizeof(struct 
amdgpu_mem_partition_info),
+                                          GFP_KERNEL);
        if (!adev->gmc.mem_partitions)
                return -ENOMEM;
 
-- 
2.25.1

Reply via email to