Commit 82e97810 authored by Harry Wentland's avatar Harry Wentland Committed by Alex Deucher

drm/amd/display: Fix formatting for null pointer dereference fix

Signed-off-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 524bed9a
...@@ -288,7 +288,7 @@ bool dc_stream_set_cursor_position( ...@@ -288,7 +288,7 @@ bool dc_stream_set_cursor_position(
pos_cpy.enable = false; pos_cpy.enable = false;
if (ipp !=NULL && ipp->funcs->ipp_cursor_set_position != NULL) if (ipp != NULL && ipp->funcs->ipp_cursor_set_position != NULL)
ipp->funcs->ipp_cursor_set_position(ipp, &pos_cpy, &param); ipp->funcs->ipp_cursor_set_position(ipp, &pos_cpy, &param);
if (mi != NULL && mi->funcs->set_cursor_position != NULL) if (mi != NULL && mi->funcs->set_cursor_position != NULL)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment