diff options
author | Joe Perches <joe@perches.com> | 2021-05-15 10:01:26 -0700 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2021-05-19 22:43:38 -0400 |
commit | 49da4c2be53ecc0885d02a80cc1255acb5823057 (patch) | |
tree | d7dc407b3665a325cc5c5649be33268a65fdca0c /drivers/gpu/drm/amd/display/dc/dcn301 | |
parent | 258ec890cc509c468638ce18a6ed48a058d7f49a (diff) | |
download | lwn-49da4c2be53ecc0885d02a80cc1255acb5823057.tar.gz lwn-49da4c2be53ecc0885d02a80cc1255acb5823057.zip |
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/dcn301')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c b/drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c index 472696f949ac..9776d1737818 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c +++ b/drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c @@ -1498,7 +1498,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; } |