diff options
author | Joe Perches <joe@perches.com> | 2021-05-15 20:01:26 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2021-05-20 05:43:38 +0300 |
commit | 49da4c2be53ecc0885d02a80cc1255acb5823057 (patch) | |
tree | d7dc407b3665a325cc5c5649be33268a65fdca0c /drivers/gpu/drm/amd/display/dc/dcn30 | |
parent | 258ec890cc509c468638ce18a6ed48a058d7f49a (diff) | |
download | linux-49da4c2be53ecc0885d02a80cc1255acb5823057.tar.xz |
drm/amd/display: Fix typo of format termination newline
/n should be \n
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dcn30')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c b/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c index 9109e2433965..39920422409d 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c +++ b/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c @@ -1725,7 +1725,7 @@ static bool init_soc_bounding_box(struct dc *dc, DC_LOGGER_INIT(dc->ctx->logger); if (!is_soc_bounding_box_valid(dc)) { - DC_LOG_ERROR("%s: not valid soc bounding box/n", __func__); + DC_LOG_ERROR("%s: not valid soc bounding box\n", __func__); return false; } |