Commit d54d29db authored by Bhawanpreet Lakha's avatar Bhawanpreet Lakha Committed by Alex Deucher
Browse files

drm/amd/display: Move and Rename "is_stream_changed()"



 -Move "is_stream_changed()" to DC interface
 -Rename "is_stream_changed()" to "dc_is_stream_changed()"

Signed-off-by: default avatarBhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Reviewed-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent b701542d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -641,7 +641,7 @@ static bool is_validation_required(

		if (set[i].surface_count != context->stream_status[i].surface_count)
			return true;
		if (!is_stream_unchanged(set[i].stream, context->streams[i]))
		if (!dc_is_stream_unchanged(set[i].stream, context->streams[i]))
			return true;

		for (j = 0; j < set[i].surface_count; j++) {
+2 −2
Original line number Diff line number Diff line
@@ -1155,7 +1155,7 @@ static bool are_stream_backends_same(
	return true;
}

bool is_stream_unchanged(
bool dc_is_stream_unchanged(
	struct dc_stream *old_stream, struct dc_stream *stream)
{

@@ -1176,7 +1176,7 @@ bool resource_validate_attach_surfaces(

	for (i = 0; i < set_count; i++) {
		for (j = 0; old_context && j < old_context->stream_count; j++)
			if (is_stream_unchanged(
			if (dc_is_stream_unchanged(
					old_context->streams[j],
					context->streams[i])) {
				if (!resource_attach_surfaces_to_context(
+2 −0
Original line number Diff line number Diff line
@@ -534,6 +534,8 @@ struct dc_stream_update {
	struct dc_transfer_func *out_transfer_func;
};

bool dc_is_stream_unchanged(
	struct dc_stream *old_stream, struct dc_stream *stream);

/*
 * Setup stream attributes if no stream updates are provided
+0 −2
Original line number Diff line number Diff line
@@ -132,8 +132,6 @@ struct pipe_ctx *find_idle_secondary_pipe(
bool resource_is_stream_unchanged(
	struct validate_context *old_context, struct dc_stream *stream);

bool is_stream_unchanged(
	struct dc_stream *old_stream, struct dc_stream *stream);

bool resource_validate_attach_surfaces(
		const struct dc_validation_set set[],