summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Jiang <Andrew.Jiang@amd.com>2017-10-06 18:02:23 -0400
committerHarry Wentland <harry.wentland@amd.com>2017-10-16 22:42:23 -0400
commitc083e6f49585fb8615291bb89b03c421223676c6 (patch)
treecabaffa6367cd542625c7f99d580a66d123ebef9
parent8d46d00eb47ebd6df02ababe7f30f8f941e17e5b (diff)
drm/amd/display: Don't set cursor address is 0 logging as errors
This actually happens quite a bit, and having it as an error causes false positive messages when running tests. Signed-off-by: Andrew Jiang <Andrew.Jiang@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Harry Wentland <Harry.Wentland@amd.com>
-rw-r--r--drivers/gpu/drm/amd/display/dc/core/dc_stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_stream.c b/drivers/gpu/drm/amd/display/dc/core/dc_stream.c
index 97f040a25820..5cf69af9693d 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_stream.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_stream.c
@@ -190,7 +190,7 @@ bool dc_stream_set_cursor_attributes(
}
if (attributes->address.quad_part == 0) {
- dm_error("DC: Cursor address is 0!\n");
+ dm_output_to_console("DC: Cursor address is 0!\n");
return false;
}