gpu: host1x: Remove unused host1x_debug_dump_syncpts
authorDr. David Alan Gilbert <linux@treblig.org>
Sun, 15 Dec 2024 21:47:50 +0000 (21:47 +0000)
committerThierry Reding <treding@nvidia.com>
Fri, 28 Feb 2025 16:44:13 +0000 (17:44 +0100)
host1x_debug_dump_syncpts() has been unused since
commit f0fb260a0cdb ("gpu: host1x: Implement syncpoint wait using DMA
fences")

Remove it.

Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Acked-by: Mikko Perttunen <mperttunen@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241215214750.448209-1-linux@treblig.org
drivers/gpu/host1x/debug.c
drivers/gpu/host1x/debug.h

index a18cc8d8caf57f7c141844767bc8f488ecf2bc3c..6433c00d5d7e07bca3019ce7ae424c4de3818586 100644 (file)
@@ -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);
-}
index 62bd8a091fa7f27ec7732d107a9c3624cdeca0c4..c43c61d876a9e31d796e8dae423d2b30bea28796 100644 (file)
@@ -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