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

drm/amd/display: Fix spelling mistake of function name



There are two spelling mistakes of the function name, fix this
by using __func__ instead of a hard coded name string.

Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent ea7154d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1602,7 +1602,7 @@ static bool dc_link_construct(struct dc_link *link,

	link->psr_settings.psr_version = DC_PSR_VERSION_UNSUPPORTED;

	DC_LOG_DC("BIOS object table - dc_link_contruct finished successfully.\n");
	DC_LOG_DC("BIOS object table - %s finished successfully.\n", __func__);
	return true;
device_tag_fail:
	link->link_enc->funcs->destroy(&link->link_enc);
@@ -1619,7 +1619,7 @@ static bool dc_link_construct(struct dc_link *link,
		link->hpd_gpio = NULL;
	}

	DC_LOG_DC("BIOS object table - dc_link_contruct failed.\n");
	DC_LOG_DC("BIOS object table - %s failed.\n", __func__);
	kfree(info);

	return false;