From 650691e93c2ef94313fca5bfbffbf524f265f6fb Mon Sep 17 00:00:00 2001 From: Serdar Kocdemir Date: Tue, 1 Jul 2025 06:32:21 -0700 Subject: [PATCH] gfxstream: fix warnings about unused parameters Fix warnings. Reviewed-by: Aaron Ruby Part-of: --- src/gfxstream/guest/platform/include/VirtGpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gfxstream/guest/platform/include/VirtGpu.h b/src/gfxstream/guest/platform/include/VirtGpu.h index 78faa4663ae..621943d92a1 100644 --- a/src/gfxstream/guest/platform/include/VirtGpu.h +++ b/src/gfxstream/guest/platform/include/VirtGpu.h @@ -196,8 +196,8 @@ class VirtGpuDevice { virtual int execBuffer(struct VirtGpuExecBuffer& execbuffer, const VirtGpuResource* blob) = 0; - virtual bool getDrmInfo(VirtGpuDrmInfo* drmInfo) { return false; } - virtual bool getPciBusInfo(VirtGpuPciBusInfo* pciBusInfo) { return false; } + virtual bool getDrmInfo(VirtGpuDrmInfo* /*drmInfo*/) { return false; } + virtual bool getPciBusInfo(VirtGpuPciBusInfo* /*pciBusInfo*/) { return false; } private: enum VirtGpuCapset mCapset;