diff options
author | Andrew Jiang <[email protected]> | 2017-10-06 18:02:23 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2017-10-21 16:50:43 -0400 |
commit | b0f8d4e963de8cd77c237a8ea37799f6f5ce995a (patch) | |
tree | cabaffa6367cd542625c7f99d580a66d123ebef9 | |
parent | 2979d7e973464c00154fa4fe029de128de3e51db (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 <[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/core/dc_stream.c | 2 |
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; } |