drm/amd/display: Use kcalloc() instead of kzalloc()
authorLenko Donchev <lenko.donchev@gmail.com>
Sun, 28 Jan 2024 09:04:38 +0000 (03:04 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 22 Feb 2024 15:28:32 +0000 (10:28 -0500)
commitf634ee1737e7b856bd4c3f040af867007d1cb7b8
tree857532f72051c1d39539432d08172e693785dbd3
parente4e4618bc10be77979d61a99eb43e702fdb850bc
drm/amd/display: Use kcalloc() instead of kzalloc()

We are trying to get rid of all multiplications from allocation
functions to prevent integer overflows. Here the multiplication is
obviously safe, but using kcalloc() is more appropriate and improves
readability. This patch has no effect on runtime behavior.

Link: https://www.kernel.org/doc/html/next/process/deprecated.html#open-coded-arithmetic-in-allocator-arguments
Link: https://github.com/KSPP/linux/issues/162
Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Lenko Donchev <lenko.donchev@gmail.com>
Signed-off-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/link/protocols/link_dpcd.c