Commit 09efa4a0 authored by Colin Ian King's avatar Colin Ian King Committed by Alex Deucher

drm/amd/display: Fix spelling mistakes of function name in error message

The function name is being reported as dc_link_contruct when it is
actually dc_link_construct_phy. Fix this by using %s and the __func__
for the function name.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e1ebbf5d
...@@ -452,7 +452,7 @@ static bool dc_link_construct_phy(struct dc_link *link, ...@@ -452,7 +452,7 @@ static bool dc_link_construct_phy(struct dc_link *link,
link->psr_settings.psr_vtotal_control_support = false; link->psr_settings.psr_vtotal_control_support = false;
link->psr_settings.psr_version = DC_PSR_VERSION_UNSUPPORTED; 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; return true;
device_tag_fail: device_tag_fail:
link->link_enc->funcs->destroy(&link->link_enc); link->link_enc->funcs->destroy(&link->link_enc);
...@@ -469,7 +469,7 @@ static bool dc_link_construct_phy(struct dc_link *link, ...@@ -469,7 +469,7 @@ static bool dc_link_construct_phy(struct dc_link *link,
link->hpd_gpio = NULL; 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__);
return false; return false;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment