Commit 3cfae153 authored by Dr. David Alan Gilbert's avatar Dr. David Alan Gilbert Committed by Thierry Reding
Browse files

gpu: host1x: Remove unused host1x_debug_dump_syncpts



host1x_debug_dump_syncpts() has been unused since
commit f0fb260a ("gpu: host1x: Implement syncpoint wait using DMA
fences")

Remove it.

Signed-off-by: default avatarDr. David Alan Gilbert <linux@treblig.org>
Acked-by: default avatarMikko Perttunen <mperttunen@nvidia.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241215214750.448209-1-linux@treblig.org
parent 7a4c93ca
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -216,12 +216,3 @@ void host1x_debug_dump(struct host1x *host1x)

	show_all(host1x, &o, true);
}

void host1x_debug_dump_syncpts(struct host1x *host1x)
{
	struct output o = {
		.fn = write_to_printk
	};

	show_syncpts(host1x, &o, false);
}
+0 −1
Original line number Diff line number Diff line
@@ -41,6 +41,5 @@ extern unsigned int host1x_debug_trace_cmdbuf;
void host1x_debug_init(struct host1x *host1x);
void host1x_debug_deinit(struct host1x *host1x);
void host1x_debug_dump(struct host1x *host1x);
void host1x_debug_dump_syncpts(struct host1x *host1x);

#endif