aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Jiang <[email protected]>2017-10-04 14:10:16 -0400
committerAlex Deucher <[email protected]>2017-10-21 16:48:35 -0400
commite66a575508b5a11df7a670265c91981e4d735749 (patch)
tree67ba0f275bf5d2a259bdcb3b870a07bea10ae061
parent81739b7f49bfded3bbd0b29c5213e9bcbea3c58d (diff)
drm/amd/display: Add missing newlines in pstate wait debug messages
These were spamming the debugger logs. Signed-off-by: Andrew Jiang <[email protected]> Reviewed-by: Tony Cheng <[email protected]> Acked-by: Harry Wentland <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
index c34dbcd1fba4..059da7882a68 100644
--- a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
+++ b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
@@ -302,7 +302,7 @@ static void verify_allow_pstate_change_high(
if (i > pstate_wait_expected_timeout_us)
dm_logger_write(hws->ctx->logger, LOG_WARNING,
- "pstate took longer than expected ~%dus",
+ "pstate took longer than expected ~%dus\n",
i);
return;
@@ -326,7 +326,7 @@ static void verify_allow_pstate_change_high(
}
dm_logger_write(hws->ctx->logger, LOG_WARNING,
- "pstate TEST_DEBUG_DATA: 0x%X",
+ "pstate TEST_DEBUG_DATA: 0x%X\n",
debug_data);
BREAK_TO_DEBUGGER();
}