projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2979d7e
)
drm/amd/display: Don't set cursor address is 0 logging as errors
author
Andrew Jiang
<
[email protected]
>
Fri, 6 Oct 2017 22:02:23 +0000
(18:02 -0400)
committer
Alex Deucher
<
[email protected]
>
Sat, 21 Oct 2017 20:50:43 +0000
(16:50 -0400)
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]
>
drivers/gpu/drm/amd/display/dc/core/dc_stream.c
patch
|
blob
|
history
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 97f040a258206bdb7ed198ac47543ae0c46ed96b..5cf69af9693d242cb8e9b52787bc614f78c6abe6 100644
(file)
--- 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;
}