drm/amd/display: remove unnecessary cast and use kcalloc instead of kzalloc
Use kcalloc instead of kzalloc and the cast on the return from kzalloc is unnecessary and can be removed. Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
01f83e0663
commit
e778c1319b
@@ -70,9 +70,8 @@ static bool construct(struct dc_context *ctx, struct dal_logger *logger,
|
|||||||
{
|
{
|
||||||
/* malloc buffer and init offsets */
|
/* malloc buffer and init offsets */
|
||||||
logger->log_buffer_size = DAL_LOGGER_BUFFER_MAX_SIZE;
|
logger->log_buffer_size = DAL_LOGGER_BUFFER_MAX_SIZE;
|
||||||
logger->log_buffer = (char *)kzalloc(logger->log_buffer_size * sizeof(char),
|
logger->log_buffer = kcalloc(logger->log_buffer_size, sizeof(char),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
|
|
||||||
if (!logger->log_buffer)
|
if (!logger->log_buffer)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user