Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e778c131 authored by Colin Ian King's avatar Colin Ian King Committed by Alex Deucher
Browse files

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: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 01f83e06
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -70,9 +70,8 @@ static bool construct(struct dc_context *ctx, struct dal_logger *logger,
{
	/* malloc buffer and init offsets */
	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);

	if (!logger->log_buffer)
		return false;