There are two spelling mistakes of the function name, fix this
by using __func__ instead of a hard coded name string.
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
 
        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);
                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;