diff mbox series

drm/amd/display: Add otg_master NULL check within init_pipe_slice_table_from_context

Message ID 20240623133252.2136231-1-make24@iscas.ac.cn (mailing list archive)
State New
Headers show
Series drm/amd/display: Add otg_master NULL check within init_pipe_slice_table_from_context | expand

Commit Message

Ma Ke June 23, 2024, 1:32 p.m. UTC
To avoid reports of NULL_RETURN warning, we should add
otg_master NULL check.

Signed-off-by: Ma Ke <make24@iscas.ac.cn>
---
 drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c b/drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c
index f6fe0a64beac..20f0951b00f1 100644
--- a/drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c
+++ b/drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c
@@ -1177,6 +1177,8 @@  static void init_pipe_slice_table_from_context(
 		stream = context->streams[i];
 		otg_master = resource_get_otg_master_for_stream(
 				&context->res_ctx, stream);
+		if (!otg_master)
+			continue;
 		count = resource_get_odm_slice_count(otg_master);
 		update_slice_table_for_stream(table, stream, count);